Files
cod-backend/Sources/App/routes.swift
Michael Simard 550f986dd7 updates
2020-12-13 09:40:01 -06:00

17 lines
309 B
Swift

import Fluent
import Vapor
func routes(_ app: Application) throws {
app.get { req in
return "It works!"
}
app.get("hello") { req -> String in
return "Hello, world!"
}
try app.register(collection: StatsController())
try app.register(collection: MatchController())
}