This commit is contained in:
Alexander Popov 2023-09-03 11:43:10 +03:00
parent e67e8c4acc
commit 478b5bb6e6
Signed by: iiiypuk
GPG Key ID: E47FE0AB36CD5ED6
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import vweb
struct App {
vweb.Context
}
fn main() {
vweb.run(&App{}, 8080)
}