examples: show how to use a before_request method for the multi-route examples, be more informative about DB creation problems (#16279)

This commit is contained in:
Hitalo Souza 2022-11-01 14:02:07 -03:00 committed by GitHub
parent 0c03ebb7a4
commit d2902e700f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 1 deletions

View file

@ -18,6 +18,10 @@ mut:
cnt int
}
pub fn (app App) before_request() {
println('[Vweb] $app.Context.req.method $app.Context.req.url')
}
fn main() {
println('vweb example')
vweb.run(&App{}, port)