feat: move me endpoint to /me and add /me/servers
All checks were successful
ci/woodpecker/push/build-and-publish Pipeline was successful

This commit is contained in:
Radical 2025-05-27 07:46:10 +00:00
parent b8cf21903e
commit 39d01bb0d0
7 changed files with 61 additions and 8 deletions

View file

@ -8,14 +8,11 @@ use crate::{
utils::get_auth_header,
};
mod me;
mod uuid;
pub fn web() -> Scope {
web::scope("/users")
.service(res)
.service(me::res)
.service(me::update)
.service(uuid::res)
}