snipplets.dev/code/V/vweb/vweb.v
2023-09-26 22:05:13 +03:00

10 lines
81 B
V

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