settings page, clipboard component

This commit is contained in:
realaravinth
2021-07-20 18:14:23 +05:30
parent db941d51b7
commit 4b18992f6a
23 changed files with 375 additions and 99 deletions

View File

@@ -30,7 +30,6 @@ pub mod routes {
pub struct Levels {
pub add: &'static str,
pub delete: &'static str,
pub get: &'static str,
pub update: &'static str,
}
@@ -39,14 +38,8 @@ pub mod routes {
pub const fn new() -> Levels {
let add = "/api/v1/mcaptcha/add";
let update = "/api/v1/mcaptcha/update";
let delete = "/api/v1/mcaptcha/delete";
let get = "/api/v1/mcaptcha/get";
Levels {
add,
delete,
get,
update,
}
Levels { add, get, update }
}
}
}