IoT-Simulator/Sources/App/routes.swift

13 lines
224 B
Swift
Raw Normal View History

2024-12-08 20:38:43 +00:00
import Foundation
2024-12-11 17:31:26 +01:00
import Vapor
2024-12-08 20:38:43 +00:00
func routes(_ app: Application) throws {
app.get { req async in
"It works!"
}
app.get("hello") { req async -> String in
return "Hello, world!"
}
}