fix vweb example

This commit is contained in:
BigBlack 2019-12-19 08:38:39 +08:00 committed by Alexander Medvednikov
parent 929e7c1193
commit aa0ad9d922

View File

@ -13,7 +13,8 @@ pub mut:
}
fn main() {
app := App{}
mut app := App{}
app.vweb = vweb.Context{}
vweb.run(mut app, port)
//vweb.run<App>(Port)
}