You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
185 B

  1. import App
  2. import Vapor
  3. var env = try Environment.detect()
  4. try LoggingSystem.bootstrap(from: &env)
  5. let app = Application(env)
  6. defer { app.shutdown() }
  7. try configure(app)
  8. try app.run()