mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
fix typo.
This commit is contained in:
parent
fad3ab0062
commit
19e732f3ea
@ -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 New Issue
Block a user