This commit is contained in:
2026-05-17 13:33:10 +02:00
parent b2cefb7d66
commit fed75d4820
54 changed files with 3845 additions and 51 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ pub fn router() -> Router<AppState> {
Router::new()
.route("/channels", get(handlers::get_all).post(handlers::create))
.route(
"/channels/:id",
"/channels/{id}",
get(handlers::get_by_id)
.put(handlers::update)
.delete(handlers::delete),