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