invite/store.go

6 lines
82 B
Go

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