47 lines
625 B
V
47 lines
625 B
V
|
module main
|
||
|
|
||
|
import vweb
|
||
|
|
||
|
const (
|
||
|
port = 8082
|
||
|
)
|
||
|
|
||
|
struct App {
|
||
|
pub mut:
|
||
|
vweb vweb.Context // TODO embed
|
||
|
cnt int
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
mut app := App{}
|
||
|
vweb.run(app, port)
|
||
|
//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) text() {
|
||
|
app.vweb.text('hello world')
|
||
|
}
|
||
|
|
||
|
pub fn (app mut App) cookie() {
|
||
|
app.vweb.text('Headers:')
|
||
|
app.vweb.set_cookie('cookie', 'test')
|
||
|
app.vweb.text(app.vweb.headers)
|
||
|
app.vweb.text('Text: hello world')
|
||
|
}
|