coreml-service-yolov8/Sources/App/routes.swift
2024-04-16 11:31:23 +02: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!"
}
}