1
0
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:
Alexander Medvednikov
2019-12-21 05:25:28 +03:00
parent 61bfecfa09
commit ecd46d381c
3 changed files with 9 additions and 6 deletions

View File

@ -63,8 +63,7 @@ mut:
}
fn main() {
app := App{}
vweb.run(mut app, 8080)
vweb.run<App>(8080)
}
fn (app mut App) index() {

View File

@ -14,8 +14,7 @@ mut:
}
fn main() {
app := App{}
vweb.run(mut app, 8080)
vweb.run<App>(8080)
}
fn (app mut App) index_text() {