A wrapper for twitter v2.0 api written for rust.
Create a new tweety::Bot
struct and send a message with it.
```rs
use tweety::Bot;
fn main() { let bot = Bot::new( accesstoken: "twitter bot access token" ) let response = bot.sendmessage("This is a test Tweet! :)").unwrap(); println!("{:?}", response.data); } ```
⚠️ This is the first stable version of tweety, previous versions will not work!