Basic Database

This commit is contained in:
Jai A
2020-05-14 22:53:22 -07:00
parent c29ab25dd2
commit fee34ba257
23 changed files with 459 additions and 155 deletions

8
src/routes/mod.rs Normal file
View File

@@ -0,0 +1,8 @@
mod search;
mod index;
pub use self::search::search_get;
pub use self::search::search_post;
pub use self::search::index_mods;
pub use self::index::index_get;