Hummingbird transport for OpenAPI generator.
// Create your router.
let router = Router()
// Create an instance of your handler type that conforms the generated protocol
// defining your service API.
let api = MyServiceAPIImpl()
// Call the generated function on your implementation to add its request
// handlers to the app.
try api.registerHandlers(on: router)
// Create the application and run as you would normally.
let app = Application(router: router)
try await app.runService()
To get started, check out the full documentation, which contains step-by-step tutorials!