fix typo.
This commit is contained in:
parent
fad3ab0062
commit
19e732f3ea
2 changed files with 2 additions and 2 deletions
|
|
@ -48,7 +48,7 @@ func (manager *MemberManagerCtx) UpdateProfile(id string, profile types.MemberPr
|
|||
return fmt.Errorf("Not implemented.")
|
||||
}
|
||||
|
||||
func (manager *MemberManagerCtx) UpdatePassword(id string, passwrod string) error {
|
||||
func (manager *MemberManagerCtx) UpdatePassword(id string, password string) error {
|
||||
return fmt.Errorf("Not implemented.")
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -20,6 +20,6 @@ type MemberManager interface {
|
|||
Select(id string) (MemberProfile, error)
|
||||
SelectAll(limit int, offset int) (map[string]MemberProfile, error)
|
||||
UpdateProfile(id string, profile MemberProfile) error
|
||||
UpdatePassword(id string, passwrod string) error
|
||||
UpdatePassword(id string, password string) error
|
||||
Delete(id string) error
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue