Add rudimentary entry page, fix main frame link navigation

This commit is contained in:
2023-06-02 00:31:25 -04:00
parent 0b7acadd60
commit ea236dff4e
5 changed files with 23 additions and 2 deletions

View File

@@ -42,6 +42,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("/entry/:id", get(handlers::entry::get))
.with_state(AppState {
pool,
config,