mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2025-12-06 07:12:46 +01:00
16 lines
351 B
Go
16 lines
351 B
Go
package webhook
|
|
|
|
import (
|
|
"net/http"
|
|
"net/url"
|
|
)
|
|
|
|
type Request struct {
|
|
Method string `json:"method"`
|
|
Path string `json:"path"`
|
|
Headers http.Header `json:"headers"`
|
|
Query url.Values `json:"query"`
|
|
Body string `json:"body"`
|
|
IsBase64Encoded bool `json:"isBase64Encoded"`
|
|
}
|