2019-07-30 15:46:10 +02:00
|
|
|
module main
|
|
|
|
|
|
|
|
import vweb
|
|
|
|
|
|
|
|
const (
|
|
|
|
Port = 8082
|
|
|
|
)
|
|
|
|
|
|
|
|
struct App {
|
|
|
|
pub mut:
|
2019-09-05 14:46:24 +02:00
|
|
|
vweb vweb.Context // TODO embed
|
2019-09-20 02:01:52 +02:00
|
|
|
cnt int
|
2019-07-30 15:46:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2019-09-05 14:46:24 +02:00
|
|
|
vweb.run<App>(Port)
|
2019-07-30 15:46:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (app mut App) init() {
|
2019-07-31 06:10:53 +02:00
|
|
|
app.vweb.handle_static('.')
|
2019-07-30 15:46:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn (app mut App) json_endpoint() {
|
2019-09-05 14:46:24 +02:00
|
|
|
app.vweb.json('{"a": 3}')
|
2019-07-30 15:46:10 +02:00
|
|
|
}
|
|
|
|
|
2019-09-21 00:27:13 +02:00
|
|
|
/*
|
2019-07-30 15:46:10 +02:00
|
|
|
pub fn (app mut App) index() {
|
2019-09-20 02:01:52 +02:00
|
|
|
app.cnt ++
|
|
|
|
|
|
|
|
$vweb.html()
|
2019-08-10 23:02:48 +02:00
|
|
|
}
|
2019-09-21 00:27:13 +02:00
|
|
|
*/
|
2019-08-10 23:02:48 +02:00
|
|
|
|
|
|
|
pub fn (app mut App) text() {
|
2019-09-05 14:46:24 +02:00
|
|
|
app.vweb.text('hello world')
|
2019-07-30 15:46:10 +02:00
|
|
|
}
|
2019-08-05 10:42:58 +02:00
|
|
|
|
2019-09-05 14:46:24 +02:00
|
|
|
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')
|
2019-09-20 02:01:52 +02:00
|
|
|
}
|