FestivalServer/Sources/App/routes.swift

12 lines
189 B
Swift
Raw Normal View History

2021-10-02 21:45:32 +02:00
import Vapor
func routes(_ app: Application) throws {
app.get { req in
return "It works!"
}
app.get("hello") { req -> String in
return "Hello, world!"
}
}