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
|
2024-05-29 21:35:12 +00:00
|
|
|
Image string
|
2023-03-04 11:54:08 +00:00
|
|
|
}
|