A Scuttlebutt client library written in Rust.
Go to file
notplants a72fbc9c08 Add git hook 2022-01-15 08:45:02 -05:00
examples Fix example 2022-01-14 12:41:15 -05:00
git_hooks Add git hook 2022-01-15 08:45:02 -05:00
src Add git hook 2022-01-15 08:45:02 -05:00
.gitignore initial commit 2021-12-02 15:12:52 +02:00
Cargo.lock Remove rand dependency 2022-01-05 14:00:23 -05:00
Cargo.toml Remove rand dependency 2022-01-05 14:00:23 -05: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);
}