mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 13:36:59 +00:00
12 lines
163 B
Rust
12 lines
163 B
Rust
use rocket::Route;
|
|
|
|
mod get_settings;
|
|
mod set_settings;
|
|
|
|
pub fn routes() -> Vec<Route> {
|
|
routes![
|
|
get_settings::req,
|
|
set_settings::req
|
|
]
|
|
}
|