Search Apps Documentation Source Content File Folder Download Copy Actions Download

instance.gno

0.25 Kb ยท 15 lines
 1package v1
 2
 3import (
 4	"gno.land/r/gnoswap/launchpad"
 5)
 6
 7type launchpadV1 struct {
 8	store launchpad.ILaunchpadStore
 9}
10
11func NewLaunchpadV1(launchpadStore launchpad.ILaunchpadStore) launchpad.ILaunchpad {
12	return &launchpadV1{
13		store: launchpadStore,
14	}
15}