invite/store.go
2025-04-07 05:54:13 -06:00

7 lines
103 B
Go

package invite
type Store interface {
Get(string) (Invite, bool)
Set(string, Invite)
Del(string)
}