IoT-Simulator/Sources/App/routes.swift
Christian Risi c2539d2250 Initial Commit
It should work for everyone
2024-11-12 11:33:37 +00:00

12 lines
187 B
Swift

import Vapor
func routes(_ app: Application) throws {
app.get { req async in
"It works!"
}
app.get("hello") { req async -> String in
"Hello, world!"
}
}