Versions in this module Expand all Collapse all v1 v1.0.3 Sep 24, 2022 Changes in this version + type Account struct + ID string + Type int + type CrudRepository interface + Delete func(t T) error + Exists func(id ID) (bool, error) + FindAll func() ([]T, error) + FindOne func(id ID) (*T, error) + Save func(t T) error + type Repository interface + FindByEmail func(email string) (*User, error) + FindByName func(name string) (*User, error) + func NewUsersRepo() Repository + type User struct + Email string + ID string + Name string v1.0.2 Sep 24, 2022