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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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()
}