7 lines
103 B
Go
7 lines
103 B
Go
package invite
|
|
|
|
type Store interface {
|
|
Get(string) (Invite, bool)
|
|
Set(string, Invite)
|
|
Del(string)
|
|
}
|