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

11
src/routes/sync/mod.rs Normal file
View File

@@ -0,0 +1,11 @@
use rocket::Route;
mod get_settings;
mod set_settings;
pub fn routes() -> Vec<Route> {
routes![
get_settings::req,
set_settings::req
]
}