cargo loco generate controller home --htmx

This commit is contained in:
Douze Bé 2024-10-21 19:02:17 +02:00
parent 652ead1c2b
commit c917942591
3 changed files with 13 additions and 1 deletions

View file

@ -50,6 +50,7 @@ impl Hooks for App {
fn routes(_ctx: &AppContext) -> AppRoutes { fn routes(_ctx: &AppContext) -> AppRoutes {
AppRoutes::with_default_routes() AppRoutes::with_default_routes()
.add_route(controllers::home::routes())
.add_route(controllers::service::routes()) .add_route(controllers::service::routes())
.add_route(controllers::bundle::routes()) .add_route(controllers::bundle::routes())
.add_route(controllers::server::routes()) .add_route(controllers::server::routes())

View file

@ -0,0 +1,10 @@
#![allow(clippy::missing_errors_doc)]
#![allow(clippy::unnecessary_struct_initialization)]
#![allow(clippy::unused_async)]
use loco_rs::prelude::*;
use axum::debug_handler;
pub fn routes() -> Routes {
Routes::new()
.prefix("homes")
}

View file

@ -4,3 +4,4 @@ pub mod user;
pub mod server; pub mod server;
pub mod bundle; pub mod bundle;
pub mod service; pub mod service;
pub mod home;