diff --git a/examples/vweb/vweb_example.v b/examples/vweb/vweb_example.v index 9d7b083d4f..88f86a7c35 100644 --- a/examples/vweb/vweb_example.v +++ b/examples/vweb/vweb_example.v @@ -13,7 +13,8 @@ pub mut: } fn main() { - app := App{} + mut app := App{} + app.vweb = vweb.Context{} vweb.run(mut app, port) //vweb.run(Port) }