frontend integration

This commit is contained in:
realaravinth
2021-04-09 14:21:43 +05:30
parent c4255397b1
commit 0496c0bdaf
95 changed files with 7115 additions and 197 deletions

View File

@@ -17,8 +17,11 @@
use actix_web::web::ServiceConfig;
mod routes;
mod auth;
mod panel;
pub fn services(cfg: &mut ServiceConfig) {
cfg.service(routes::login);
cfg.service(auth::login::login);
cfg.service(auth::register::join);
cfg.service(panel::panel);
}