discordBots/cmd/dealsbot/api.go

15 lines
160 B
Go
Raw Normal View History

2023-03-04 11:54:08 +00:00
package main
type Api interface {
load() error
get() []Deal
}
type DealsMap map[string]Deal
type Deal struct {
Id string
Title string
Url string
}