Schafkopf-Server/Sources/App/routes.swift

12 lines
189 B
Swift
Raw Normal View History

2021-11-25 19:15:38 +01:00
import Vapor
func routes(_ app: Application) throws {
app.get { req in
return "It works!"
}
app.get("hello") { req -> String in
return "Hello, world!"
}
}