foxchat/chat/src/http/api/guilds/mod.rs

8 lines
173 B
Rust

mod create_guild;
use axum::{Router, routing::post};
pub fn router() -> Router {
Router::new()
.route("/_fox/chat/guilds", post(create_guild::create_guild))
}