style: move servers to guilds
This commit is contained in:
parent
1543a2f485
commit
e4d9a1b5af
9 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@ struct GuildInfo {
|
|||
}
|
||||
|
||||
pub fn web() -> Scope {
|
||||
web::scope("/servers")
|
||||
web::scope("/guilds")
|
||||
.service(post)
|
||||
.service(get)
|
||||
.service(uuid::web())
|
|
@ -5,7 +5,7 @@ use actix_web::{Scope, web};
|
|||
mod auth;
|
||||
mod channels;
|
||||
mod invites;
|
||||
mod servers;
|
||||
mod guilds;
|
||||
mod stats;
|
||||
mod users;
|
||||
mod me;
|
||||
|
@ -16,7 +16,7 @@ pub fn web() -> Scope {
|
|||
.service(auth::web())
|
||||
.service(users::web())
|
||||
.service(channels::web())
|
||||
.service(servers::web())
|
||||
.service(guilds::web())
|
||||
.service(invites::web())
|
||||
.service(me::web())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue