mirror of
https://github.com/SecurityBrewery/catalyst.git
synced 2026-04-10 12:51:48 +02:00
refactor: remove pocketbase (#1138)
This commit is contained in:
15
app/reaction/trigger/webhook/request.go
Normal file
15
app/reaction/trigger/webhook/request.go
Normal file
@@ -0,0 +1,15 @@
|
||||
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"`
|
||||
}
|
||||
Reference in New Issue
Block a user