discordBots/cmd/dealsbot/api/api.go
Seraphim Strub 1d5c7056be create embed post for epic games
because they no longer create them for urls
2024-05-29 21:38:01 +00:00

15 lines
173 B
Go

package api
type Api interface {
Load() error
Get() []Deal
}
type DealsMap map[string]Deal
type Deal struct {
Id string
Title string
Url string
Image string
}