package storage import "errors" type Account struct { ID string `json:"_id"` } func (s *Storage) Accounts(token string) ([]Account, error) { return nil, errors.New("not impl") } func (s *Storage) PrimaryAccounts(token string) ([]Account, error) { return nil, errors.New("not impl") }