use actix_web::Scope; pub mod info; pub fn init_bot() -> Scope { Scope::new("/bot").service(info::get_info) }