feat: implement admin api v1

This commit is contained in:
a.tolmachev
2026-03-25 19:12:58 +03:00
parent 0f72f2a6cb
commit aef87f582f
14 changed files with 1880 additions and 57 deletions
+6
View File
@@ -0,0 +1,6 @@
use crate::service::AdminService;
#[derive(Clone)]
pub struct AppState {
pub service: AdminService,
}