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

10 lines
81 B
Coq
Raw Normal View History

2023-09-03 11:43:10 +03:00
import vweb
struct App {
vweb.Context
}
fn main() {
vweb.run(&App{}, 8080)
}