Channel subscription, message sending, channel delete.

This commit is contained in:
Paul Makles
2021-01-18 14:50:17 +00:00
parent 15357008d6
commit 3d3db80e61
7 changed files with 139 additions and 4 deletions

View File

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