init - arche setup, empty API, discord bot
This commit is contained in:
5
src/router/mod.rs
Normal file
5
src/router/mod.rs
Normal file
@@ -0,0 +1,5 @@
|
||||
use axum::{Router, routing::get};
|
||||
|
||||
pub fn init() -> Router {
|
||||
Router::new().route("/", get(async || "root"))
|
||||
}
|
||||
Reference in New Issue
Block a user