Generate Vapor project.

This commit is contained in:
2024-12-31 08:49:59 -05:00
commit bb568ba60e
11 changed files with 251 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import Vapor
// configures your application
public func configure(_ app: Application) async throws {
// uncomment to serve files from /Public folder
// app.middleware.use(FileMiddleware(publicDirectory: app.directory.publicDirectory))
// register routes
try routes(app)
}