8 lines
165 B
Swift
Executable File
8 lines
165 B
Swift
Executable File
import Vapor
|
|
|
|
// configures your application
|
|
public func configure(_ app: Application) throws {
|
|
app.http.server.configuration.port = 10000
|
|
try routes(app)
|
|
}
|