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