associatedtype Context
s11Hummingbird18MiddlewareProtocolP7ContextQaWhat are these?
s11Hummingbird18MiddlewareProtocolP7ContextQa
FNV24: [1DWGI]
associatedtype Input
associatedtype Output
func handle(Input, context: Context, next: (Input, Context) async throws -> Output) async throws -> Output
import Hummingbird
protocol MiddlewareProtocol<Input, Output, Context> : Sendable
Middleware protocol with generic input, context and output types
func handle(_ input: Input, context: Context, next: (Input, Context) async throws -> Output) async throws -> Output