Show crates list on homepage

This commit is contained in:
Nico Burns 2022-04-18 15:41:46 +01:00
parent a09d1bde0f
commit 5e2a203f41

View file

@ -21,7 +21,7 @@ async fn main() {
// build our application with a route
let app = Router::new()
.route("/", get(routes::index))
.route("/", get(routes::crates::list::run))
.route("/users", post(routes::users::create::run))
.route("/crates", get(routes::crates::list::run))
.nest("/static", static_file_service)