:warning: Community Driven :warning: This is a client library for the traQ API, written in Rust.
This crate is updated using openapi-generator.
``rust
//
traq` will be the name of this crate
use traq::apis::{channel_api, configuration};
async fn main() { let conf = configuration::Configuration { beareraccesstoken: env::var("BOTACCESSTOKEN").ok(), ..Default::default() }; // #general let res = channelapi::getchannels(&conf, Some(true)).await; println!("{:?}", res); } ```