Search Apps Documentation Source Content File Folder Download Copy Actions Download

instance.gno

0.24 Kb ยท 19 lines
 1package v1
 2
 3import (
 4	"gno.land/r/gnoswap/router"
 5)
 6
 7type routerV1 struct {
 8	store router.IRouterStore
 9}
10
11func NewRouterV1(
12	routerStore router.IRouterStore,
13) router.IRouter {
14	instance := &routerV1{
15		store: routerStore,
16	}
17
18	return instance
19}