Add feed form

This commit is contained in:
2023-07-08 01:05:49 -04:00
parent f69d0f2752
commit 478e72d8f0
12 changed files with 272 additions and 17 deletions

View File

@@ -55,6 +55,7 @@ async fn main() -> Result<()> {
.route("/api/v1/entry/:id", get(handlers::api::entry::get))
.route("/", get(handlers::home::get))
.route("/feeds", get(handlers::feeds::get))
.route("/feed", post(handlers::feed::post))
.route("/feed/:id", get(handlers::feed::get))
.route("/entry/:id", get(handlers::entry::get))
.route("/log", get(handlers::log::get))