Caps-Server/Sources/App/configure.swift

11 lines
348 B
Swift
Raw Normal View History

import Vapor
2020-09-20 11:36:35 +02:00
// configures your application
public func configure(_ app: Application) throws {
// uncomment to serve files from /Public folder
// app.middleware.use(FileMiddleware(publicDirectory: app.directory.publicDirectory))
// Register routes to the router
2020-09-20 11:36:35 +02:00
try routes(app)
// Configure the rest of your application here
}