package main type Webhook struct { Urls []string `json:"urls"` Verbose bool `json:"verbose"` Auth BasicAuth `json:"auth"` Headers map[string]string `json:"header"` Method string `json:"method"` Template string `json:"template"` ContentType string `json:"content_type"` } type BasicAuth struct { Username string `json:"username"` Password string `json:"password"` }