rust-traq

Rust Release LICENSE

GitHub release crate

:warning: Community Driven :warning: This is a client library for the traQ API, written in Rust.

This crate is updated using openapi-generator.

Example

``rust //traq` will be the name of this crate use traq::apis::{channel_api, configuration};

[tokio::main]

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); } ```