1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vweb: add vweb.run_app(app,port); fix compilation of vweb_assets/main.v

This commit is contained in:
Delyan Angelov
2020-06-07 11:02:35 +03:00
parent caa25a3150
commit 013bfc7ebc
2 changed files with 7 additions and 8 deletions

View File

@ -8,8 +8,8 @@ const (
port = 8081
)
pub struct App {
mut:
struct App {
pub mut:
vweb vweb.Context
}