send notifications

This commit is contained in:
realaravinth
2021-05-10 00:55:47 +05:30
parent bd20b4238b
commit aa0c30f1bd
6 changed files with 168 additions and 2 deletions

View File

@@ -21,6 +21,7 @@ use super::mcaptcha::duration::routes::Duration;
use super::mcaptcha::levels::routes::Levels;
use super::mcaptcha::mcaptcha::routes::MCaptcha;
use super::meta::routes::Meta;
use super::notifications::routes::Notifications;
use super::pow::routes::PoW;
pub const ROUTES: Routes = Routes::new();
@@ -33,6 +34,7 @@ pub struct Routes {
pub duration: Duration,
pub meta: Meta,
pub pow: PoW,
pub notifications: Notifications,
}
impl Routes {
@@ -45,6 +47,7 @@ impl Routes {
duration: Duration::new(),
meta: Meta::new(),
pow: PoW::new(),
notifications: Notifications::new(),
}
}
}