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 @@ pub mod account;
pub mod auth;
pub mod mcaptcha;
pub mod meta;
mod notifications;
pub mod pow;
mod routes;
@@ -31,6 +32,7 @@ pub fn services(cfg: &mut ServiceConfig) {
auth::services(cfg);
account::services(cfg);
mcaptcha::services(cfg);
notifications::services(cfg);
pow::services(cfg);
}