1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/vweb/vweb_example.v
2020-02-05 10:53:16 +01:00

44 lines
580 B
V

module main
import vweb
const (
port = 8082
)
pub struct App {
pub mut:
vweb vweb.Context // TODO embed
cnt int
}
fn main() {
println('noice')
vweb.run<App>(port)
}
pub fn (app mut App) init() {
app.vweb.handle_static('.')
}
pub fn (app mut App) json_endpoint() {
app.vweb.json('{"a": 3}')
}
pub fn (app mut App) index() {
app.cnt++
$vweb.html()
}
pub fn (app mut App) reset() {
}
pub fn (app mut App) text() {
app.vweb.text('Hello world')
}
pub fn (app mut App) cookie() {
app.vweb.set_cookie('cookie', 'test')
app.vweb.text('Headers: $app.vweb.headers')
}