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

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
}