Add message sending.

This commit is contained in:
Paul Makles
2021-01-18 20:07:42 +00:00
parent c401663c47
commit c6ba72d924
3 changed files with 66 additions and 1 deletions

View File

@@ -2,10 +2,12 @@ use rocket::Route;
mod fetch_channel;
mod delete_channel;
mod message_send;
pub fn routes() -> Vec<Route> {
routes![
fetch_channel::req,
delete_channel::req
delete_channel::req,
message_send::req
]
}