A Scuttlebutt client library written in Rust.
Go to file
mycognosist 143f70b921 initial commit 2021-12-02 15:12:52 +02:00
src initial commit 2021-12-02 15:12:52 +02: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 initial commit 2021-12-02 15:12:52 +02:00

README.md

golgi

A Scuttlebutt client written in Rust

An experimental 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);
}