🎉Release v0.3.0!🎉

This commit is contained in:
Shiroyasha 2024-08-20 22:08:05 +03:00
parent dabe176e0e
commit 494de2ba0c
Signed by: shiroyashik
GPG key ID: E4953D3940D7860A
9 changed files with 60 additions and 19 deletions

View file

@ -12,6 +12,8 @@ pub fn router() -> Router<AppState> {
.route("/raw", post(http2ws::raw))
.route("/sub/raw", post(http2ws::sub_raw))
.route("/user/create", post(users::create_user))
.route("/user/:uuid/ban", post(users::ban))
.route("/user/:uuid/unban", post(users::unban))
.route("/avatar/:uuid", put(avatars::upload_avatar).layer(DefaultBodyLimit::disable()))
.route("/avatar/:uuid", delete(avatars::delete_avatar))
}