A Scuttlebutt client library written in Rust.
Go to file
notplants 187d279d7b Merge pull request 'Add publish_post method' (#3) from publish into main
Reviewed-on: #3
2021-12-26 17:49:47 +00:00
examples Working on publish_description 2021-12-22 16:23:54 -05:00
src Response to code review 2021-12-24 10:34:07 -05:00
.gitignore initial commit 2021-12-02 15:12:52 +02:00
Cargo.lock initial commit 2021-12-02 15:12:52 +02:00
Cargo.toml initial commit 2021-12-02 15:12:52 +02:00
README.md golgi description 2021-12-02 15:16:19 +02:00

README.md

golgi

The Golgi complex (aka. Golgi apparatus or Golgi body) packages proteins into membrane-bound vesicles inside the cell before the vesicles are sent to their destination.


Golgi is an experimental Scuttlebutt client which uses the kuska-ssb libraries and aims to provide a high-level API for interacting with an sbot instance. Development efforts are currently oriented towards go-sbot interoperability.

Example Usage

pub async fn run() -> Result<(), GolgiError> {
    let mut sbot_client = Sbot::init(None, None).await?;

    let id = sbot_client.whoami().await?;
    println!("{}", id);
}