11 lines
251 B
Go
11 lines
251 B
Go
package types
|
|
|
|
type MemberManager interface {
|
|
Connect() error
|
|
Disconnect() error
|
|
|
|
Insert(id string, profile MemberProfile) error
|
|
Update(id string, profile MemberProfile) error
|
|
Delete(id string) error
|
|
Select() (map[string]MemberProfile, error)
|
|
}
|