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

ci: fix compiling blog/, *and* comptime_if_is_test.v. Add vweb_app_test.v .

This commit is contained in:
Delyan Angelov
2021-05-11 13:59:02 +03:00
parent 63cb04196b
commit 6450fda938
3 changed files with 68 additions and 3 deletions

View File

@ -7,13 +7,13 @@ import json
struct App {
vweb.Context
mut:
pub mut:
db sqlite.DB [server_var]
user_id string
}
fn main() {
vweb.run<App>(8081)
vweb.run(&App{}, 8081)
}
/*