feat: add fetching and making invites
This commit is contained in:
parent
773f4ca977
commit
c693e89853
6 changed files with 182 additions and 0 deletions
|
@ -4,6 +4,7 @@ mod auth;
|
|||
mod stats;
|
||||
mod users;
|
||||
mod servers;
|
||||
mod invites;
|
||||
|
||||
pub fn web() -> Scope {
|
||||
web::scope("/v1")
|
||||
|
@ -11,4 +12,5 @@ pub fn web() -> Scope {
|
|||
.service(auth::web())
|
||||
.service(users::web())
|
||||
.service(servers::web())
|
||||
.service(invites::web())
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue