You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/BreezeLambdaWebHook/BreezeLambdaWebHookService.swift
+10-3Lines changed: 10 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -27,13 +27,19 @@ public struct HandlerContext: Sendable {
27
27
}
28
28
}
29
29
30
+
/// A service that runs a Breeze Lambda WebHook handler
31
+
///
32
+
/// This service is responsible for providing the necessary context and configuration to the handler,
33
+
/// including the HTTP client and any other required resources.
34
+
///
35
+
/// - Note: This service is designed to be used with the Breeze Lambda WebHook framework, which allows for handling webhooks in a serverless environment.
0 commit comments