discordBots/cmd/dealsbot/api/api.go
2023-03-06 20:53:07 +01:00

14 lines
159 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
}