This commit is contained in:
realaravinth
2021-07-21 22:15:52 +05:30
parent 257b3a2b88
commit e9e6aac770
14 changed files with 156 additions and 41 deletions

View File

@@ -40,6 +40,10 @@ pub mod routes {
delete: "/sitekey/{key}/delete",
}
}
pub const fn get_sitemap() -> [&'static str; 2] {
const S: Sitekey = Sitekey::new();
[S.list, S.add]
}
}
}