discordBots/cmd/dealsbot/api/api.go

15 lines
159 B
Go
Raw Normal View History

2023-03-06 19:53:07 +00:00
package api
2023-03-04 11:54:08 +00:00
type Api interface {
2023-03-06 19:53:07 +00:00
Load() error
Get() []Deal
2023-03-04 11:54:08 +00:00
}
type DealsMap map[string]Deal
type Deal struct {
Id string
Title string
Url string
}