chorus/examples/instance.rs

11 lines
301 B
Rust
Raw Normal View History

2023-11-13 22:20:50 +01:00
use chorus::instance::Instance;
#[tokio::main(flavor = "current_thread")]
2023-11-13 22:20:50 +01:00
async fn main() {
2023-12-15 00:10:33 +01:00
let instance = Instance::new("https://example.com/")
2023-11-13 22:20:50 +01:00
.await
.expect("Failed to connect to the Spacebar server");
dbg!(instance.instance_info);
dbg!(instance.limits_information);
}