v/examples/vweb/test_app.v

36 lines
423 B
Go
Raw Normal View History

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}')
}
2019-08-12 22:15:05 +00:00
/*
pub fn (app mut App) index() {
2019-08-10 21:02:48 +00:00
$vweb.html()
}
2019-08-12 22:15:05 +00:00
*/
2019-08-10 21:02:48 +00:00
pub fn (app mut App) text() {
app.vweb.text('hello world')
}