package db import ( "github.com/jmoiron/sqlx" ) type Package struct { Db *sqlx.DB } type Interface interface { GetPokemons() } func (p *Package) GetPokemons() { }