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