Initial commit

This commit is contained in:
Aleksandr 2024-11-17 14:58:34 +03:00
commit 4a04bfae91
31 changed files with 3297 additions and 0 deletions

12
src/http/novels.rs Normal file
View file

@ -0,0 +1,12 @@
use crate::state::Router;
pub fn make() -> Router {
Router::new()
.nest("/:slug", specific::make())
.merge(list::make())
.nest("/pull_next", pull_next::make())
}
mod list;
mod pull_next;
mod specific;