Generate Vapor project.
This commit is contained in:
14
Sources/App/routes.swift
Normal file
14
Sources/App/routes.swift
Normal file
@@ -0,0 +1,14 @@
|
||||
import Fluent
|
||||
import Vapor
|
||||
|
||||
func routes(_ app: Application) throws {
|
||||
app.get { req async throws in
|
||||
try await req.view.render("index", ["title": "Hello Vapor!"])
|
||||
}
|
||||
|
||||
app.get("hello") { req async -> String in
|
||||
"Hello, world!"
|
||||
}
|
||||
|
||||
try app.register(collection: TodoController())
|
||||
}
|
||||
Reference in New Issue
Block a user