Test webhook

This commit is contained in:
2025-10-10 20:48:35 +02:00
parent 23253eb06c
commit 6d88711576
3 changed files with 58 additions and 32 deletions

View File

@@ -14,7 +14,7 @@ type WebhookMessage struct {
Timestamp time.Time `json:"timestamp"`
}
// WebhookInterface defines the contract for webhook operations
type WebhookInterface interface {
// Webhook defines the contract for webhook operations
type Webhook interface {
Post(channel, topic, message string) error
}