1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/examples/vweb/test_app.v
2019-08-06 03:06:27 +02:00

30 lines
367 B
Go

module main
import vweb
const (
Port = 8082
)
struct App {
pub mut:
vweb vweb.Context // TODO embed
}
fn main() {
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.vweb.text('hello world')
}