🚧 Handles siempre requeridos en la implementación

This commit is contained in:
Manuel Cillero 2023-06-09 11:11:50 +02:00
parent 0af85c4d77
commit a48c575198
7 changed files with 16 additions and 24 deletions

View file

@ -1,8 +1,14 @@
use pagetop::prelude::*;
define_handle!(APP_HELLO_WORLD);
struct HelloWorld;
impl ModuleTrait for HelloWorld {
fn handle(&self) -> Handle {
APP_HELLO_WORLD
}
fn configure_service(&self, cfg: &mut server::web::ServiceConfig) {
cfg.route("/", server::web::get().to(hello_world));
}
@ -10,7 +16,7 @@ impl ModuleTrait for HelloWorld {
async fn hello_world(request: server::HttpRequest) -> ResultPage<Markup, FatalError> {
Page::new(request)
.with_in("content", L10n::html(html! {h1 { "Hello World!"}}))
.with_in("content", L10n::html(html! { h1 { "Hello World!" } }))
.render()
}