package main type Api interface { load() error get() []Deal } type DealsMap map[string]Deal type Deal struct { Id string Title string Url string }