package domain type AccountRepository interface { Insert(account *Account) (int, error) FetchOneByUsername(username string) (*Account, error) }