Init commit, base struct and redis connection

This commit is contained in:
Schrody
2026-01-29 17:55:14 +01:00
parent 58164d4b10
commit 9ae5696aec
10 changed files with 206 additions and 0 deletions

8
structs/request.go Normal file
View File

@@ -0,0 +1,8 @@
package structs
type WebhookJob struct {
TargetURL string
Method string
Headers map[string][]string
Payload []byte
}