9 lines
109 B
Swift
9 lines
109 B
Swift
import Vapor
|
|
|
|
func routes(_ app: Application) throws {
|
|
|
|
app.get { req async in
|
|
"Success"
|
|
}
|
|
}
|