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

tutorial: a minor vweb update

This commit is contained in:
Alexander Medvednikov 2020-01-15 22:20:42 +01:00
parent de3ad2b04f
commit 663a8c9c79

View File

@ -57,7 +57,7 @@ import (
vweb
)
struct App {
pub struct App {
mut:
vweb vweb.Context
}
@ -71,6 +71,7 @@ fn (app mut App) index() {
}
pub fn (app &App) init() {}
pub fn (app &App) reset() {}
```