12 lines
286 B
Swift
12 lines
286 B
Swift
|
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!"
|
||
|
}
|
||
|
}
|