https://github.com/ghostdevv/bereal-rs
https://github.com/ghostdevv/bereal-rs
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ghostdevv/bereal-rs
- Owner: ghostdevv
- License: mit
- Created: 2024-04-08T03:23:24.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-22T18:14:12.000Z (over 1 year ago)
- Last Synced: 2025-11-28T12:29:01.385Z (4 months ago)
- Language: Rust
- Size: 58.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# bereal-rs

A library that wraps the bereal.devin.fun API for getting bereal moment data
```rs
use bereal::BerealClient;
#[tokio::main]
async fn main() {
let client = BerealClient::new("API_KEY");
println!("{:?}", client.latest_moments().await);
}
```