feat: download published pow performance analytics

This commit is contained in:
Aravinth Manivannan
2023-06-30 18:13:46 +05:30
parent ccb9278d67
commit c56b04fa5a
3 changed files with 182 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ use super::mcaptcha::routes::Captcha;
use super::meta::routes::Meta;
use super::notifications::routes::Notifications;
use super::pow::routes::PoW;
use super::survey::routes::Survey;
pub const ROUTES: Routes = Routes::new();
@@ -20,6 +21,7 @@ pub struct Routes {
pub captcha: Captcha,
pub meta: Meta,
pub pow: PoW,
pub survey: Survey,
pub notifications: Notifications,
}
@@ -32,6 +34,7 @@ impl Routes {
meta: Meta::new(),
pow: PoW::new(),
notifications: Notifications::new(),
survey: Survey::new(),
}
}
}