snipplets.dev/snipplets/code/V/vweb/vweb.v

10 lines
81 B
V

import vweb
struct App {
vweb.Context
}
fn main() {
vweb.run(&App{}, 8080)
}