examples: fix veb example's file_transform port typo (#22511)

This commit is contained in:
alexey semenyuk 2024-10-13 15:23:08 +05:00 committed by GitHub
parent 6064c6f210
commit bb99f8b57c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,7 +13,7 @@ pub struct App {
fn main() { fn main() {
mut app := &App{} mut app := &App{}
veb.run[App, Context](mut app, 8080) veb.run[App, Context](mut app, port)
} }
pub fn (mut app App) index() veb.Result { pub fn (mut app App) index() veb.Result {