package pokemon import ( "git.ssns.se/git/frozendragon/pokemon-go-trade/internal/db" ) type Package struct { Db db.Interface } type Interface interface { GetAvailablePokemons() } func (p *Package) GetAvailablePokemons() { }