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 }