diff --git a/snipplets/code/V/vweb/vweb.v b/snipplets/code/V/vweb/vweb.v new file mode 100644 index 0000000..c8e7653 --- /dev/null +++ b/snipplets/code/V/vweb/vweb.v @@ -0,0 +1,9 @@ +import vweb + +struct App { + vweb.Context +} + +fn main() { + vweb.run(&App{}, 8080) +}