1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vweb: print address of the app

This commit is contained in:
Alexander Medvednikov 2019-07-30 22:24:53 +02:00
parent 1202631fa6
commit 8bb41d2de5

View File

@ -70,6 +70,7 @@ $html
}
pub fn run<T>(port int) {
println('Running vweb app on http://localhost:$port ...')
l := net.listen(port) or { panic('failed to listen') return }
for {
conn := l.accept() or {