veb/veb.v

13 lines
279 B
V

// Copyright (c) 2022 David Satime Wallin. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
module main
import router
fn main() {
println("hej")
routes := router.run_parse()
println("routes: $routes")
}