Rust wrapper around the Go sbotcli Scuttlebutt tool.
Go to file
mycognosist 97fc6cd3ff docs, errors and basic api 2021-11-03 15:52:35 +02:00
src docs, errors and basic api 2021-11-03 15:52:35 +02:00
.gitignore docs, errors and basic api 2021-11-03 15:52:35 +02:00
Cargo.toml docs, errors and basic api 2021-11-03 15:52:35 +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