offline-web/src/lib.rs

11 lines
179 B
Rust
Raw Normal View History

2025-03-29 16:06:11 -04:00
use axum::{
routing::get,
Router
};
2025-03-28 17:46:09 -04:00
2025-03-29 16:06:11 -04:00
mod datamodel;
2025-03-28 17:46:09 -04:00
2025-03-29 16:06:11 -04:00
pub fn endpoints() -> Router {
Router::new().route("/api/v1/ref/all/username", get(|| async { "hello world" }))
2025-03-28 17:46:09 -04:00
}