New Feature: Settings sync to server.

This commit is contained in:
Paul
2021-05-26 13:02:40 +01:00
parent 5aa9624d5c
commit 3cd3bc54af
7 changed files with 113 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ mod onboard;
mod push;
mod root;
mod users;
mod sync;
pub fn mount(rocket: Rocket) -> Rocket {
rocket
@@ -17,4 +18,5 @@ pub fn mount(rocket: Rocket) -> Rocket {
.mount("/channels", channels::routes())
.mount("/guild", guild::routes())
.mount("/push", push::routes())
.mount("/sync", sync::routes())
}