import vweb
struct App {
vweb.Context
}
pub fn (mut app App) index() vweb.Result {
test := 'test'
return $vweb.html()
fn main() {
mut app := App{}
vweb.run_app<App>(mut app, 8181)