use chorus::{instance::Instance, types::IntoShared};
#[tokio::main(flavor = "current_thread")]
async fn main() {
let instance = Instance::new("https://example.com", None)
.await
.expect("Failed to connect to the Spacebar server")
.into_shared();
let instance_lock = instance.read().unwrap();
dbg!(&instance_lock.instance_info);
dbg!(&instance_lock.limits_information);
}