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