1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//!
//! # Examples
//!
//!
//!```
//!use dotenv::dotenv;
//!
//!use lichessbot::lichessbot::*;
//!
//!#[tokio::main]
//!async fn main() -> Result<(), Box<dyn std::error::Error>>{
//!	dotenv().ok();
//!
//!	let mut bot = LichessBot::new();
//!
//!	bot.stream().await
//!}
//!
//!```


// lib
pub mod lichessbot;