init - arche setup, empty API, discord bot

This commit is contained in:
2025-04-29 01:48:49 +02:00
commit c56edaf144
10 changed files with 2910 additions and 0 deletions

5
src/router/mod.rs Normal file
View File

@@ -0,0 +1,5 @@
use axum::{Router, routing::get};
pub fn init() -> Router {
Router::new().route("/", get(async || "root"))
}