package api type Api interface { Load() error Get() []Deal } type DealsMap map[string]Deal type Deal struct { Id string Title string Url string }