Rust wrapper around the Go sbotcli Scuttlebutt tool.
Go to file
glyph c91506f0c9 add dirs dependency 2021-11-04 16:57:48 +02:00
src refactor to use Sbot object 2021-11-04 16:57:27 +02:00
.gitignore docs, errors and basic api 2021-11-03 15:52:35 +02:00
Cargo.toml add dirs dependency 2021-11-04 16:57:48 +02:00
README.md docs, errors and basic api 2021-11-03 15:52:35 +02:00

README.md

peach-sbotcli

Rust wrapper around the Go sbotcli ScuttleButt tool (cryptoscope/ssb), allowing interaction with a gosbot instance.

Example

let id = "@p13zSAiOpguI9nsawkGijsnMfWmFd5rlUNpzekEE+vI=.ed25519";

let follow_ref = peach_sbotcli::follow(id)?;
let block_ref = peach_sbotcli::block(id)?;

let invite_code = peach_sbotcli::create_invite()?;

Documentation

Use cargo doc to generate and serve the Rust documentation for this library:

git clone https://git.coopcloud.tech/PeachCloud/peach-sbotcli.git
cd peach-sbotcli
cargo doc --no-deps --open

License

AGPL-3.0