🐛 Fix package registration

This commit is contained in:
Manuel Cillero 2024-04-03 15:17:20 +02:00
parent 7fd262eaa0
commit 4ea28030c7
5 changed files with 26 additions and 57 deletions

6
examples/app-basic.rs Normal file
View file

@ -0,0 +1,6 @@
use pagetop::prelude::*;
#[pagetop::main]
async fn main() -> std::io::Result<()> {
Application::new().run()?.await
}