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

9 lines
173 B
Rust
Raw Normal View History

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