mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 15:22:47 +01:00
13 lines
258 B
Go
13 lines
258 B
Go
package webhook
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type Response struct {
|
|
StatusCode int `json:"statusCode"`
|
|
Headers http.Header `json:"headers"`
|
|
Body string `json:"body"`
|
|
IsBase64Encoded bool `json:"isBase64Encoded"`
|
|
}
|