diff --git a/internal/client/gotify.go b/internal/client/gotify.go index 3ca7f86..589e08a 100644 --- a/internal/client/gotify.go +++ b/internal/client/gotify.go @@ -3,11 +3,11 @@ package client import "gotify-client/pkg/utils/time" type GotifyMessage struct { - Id int `json:"id"` - Appid int `json:"appid"` - Message string `json:"message"` - Title string `json:"title"` - Priority int `json:"priority"` - Extras interface{} `json:"extras"` - Date time.Time `json:"date"` + Id int `json:"id"` + Appid int `json:"appid"` + Message string `json:"message"` + Title string `json:"title"` + Priority int `json:"priority"` + Extras map[string]any `json:"extras"` + Date time.Time `json:"date"` }