mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
fix vc generator
This commit is contained in:
@ -63,8 +63,7 @@ mut:
|
||||
}
|
||||
|
||||
fn main() {
|
||||
app := App{}
|
||||
vweb.run(mut app, 8080)
|
||||
vweb.run<App>(8080)
|
||||
}
|
||||
|
||||
fn (app mut App) index() {
|
||||
|
@ -14,8 +14,7 @@ mut:
|
||||
}
|
||||
|
||||
fn main() {
|
||||
app := App{}
|
||||
vweb.run(mut app, 8080)
|
||||
vweb.run<App>(8080)
|
||||
}
|
||||
|
||||
fn (app mut App) index_text() {
|
||||
|
Reference in New Issue
Block a user