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

vtest: remove pub before main

This commit is contained in:
Enzo Baldisserri
2020-04-17 21:41:54 +02:00
committed by GitHub
parent 3e324befd0
commit fe249ab0c3
3 changed files with 6 additions and 8 deletions

View File

@ -36,6 +36,6 @@ pub fn callback(req picohttpparser.Request, res mut picohttpparser.Response) {
}
}
pub fn main() {
fn main() {
picoev.new(8088, &callback).serve()
}