discordBots/cmd/dealsbot/api.go
2023-03-06 18:21:40 +01:00

14 lines
160 B
Go

package main
type Api interface {
load() error
get() []Deal
}
type DealsMap map[string]Deal
type Deal struct {
Id string
Title string
Url string
}