BotDiscord/src/api/bot/mod.rs

7 lines
115 B
Rust

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