10 lines
170 B
Go
10 lines
170 B
Go
package invite
|
|
|
|
// New creates a new invite store
|
|
func New(root_url string, store Store) InviteKV {
|
|
res := InviteKV{
|
|
URL: root_url,
|
|
store: store,
|
|
}
|
|
return res
|
|
}
|