lichessbot 0.1.12

Lichess bot. Under construction.
Documentation
//!
//! # Examples
//!
//!
//!```
//!extern crate env_logger;
//!
//!use dotenv::dotenv;
//!
//!use lichessbot::lichessbot::*;
//!
//!#[tokio::main]
//!async fn main() -> Result<(), Box<dyn std::error::Error>>{
//!	dotenv().ok();
//!	env_logger::init();
//!
//!	let mut bot = LichessBot::new();
//!
//!	bot.stream().await
//!}
//!
//!```


// lib
pub mod lichessbot;