Versions in this module Expand all Collapse all v1 v1.1.0 Nov 22, 2023 Changes in this version + type MasterUserService interface + CreateUser func(name, password string) error + DropUser func(username string, password string) error + GetUsers func(head, tail int) ([]entity.MasterUser, error) + Login func(name, password string) (entity.MasterUser, error) + func NewMasterUserService(masterUserRepository repository.MasterUserRepository) MasterUserService + type PasswordService interface + GetAllPasswords func() ([]entity.PasswordList, error) + GetPassword func(key string) (string, error) + SetPassword func(key, plainPw, description string) error + UpdatePassword func(key, plainPwForPersist, plainUserPw string) error + func NewPasswordService(userPk int, cryptoKey []byte) (PasswordService, error)