Caps-Server/Sources/App/routes.swift

12 lines
286 B
Swift
Executable File

import Routing
import Vapor
/// Register your application's routes here.
///
/// [Learn More ](https://docs.vapor.codes/3.0/getting-started/structure/#routesswift)
public func routes(_ router: Router) throws {
router.get("hello") { req in
return "Hello, world!"
}
}