Search Apps Documentation Source Content File Folder Download Copy Actions Download

config.gno

0.34 Kb ยท 17 lines
 1package config
 2
 3import (
 4	"gno.land/p/moul/authz"
 5)
 6
 7var (
 8	GnoDevRels = authz.NewMemberAuthority(
 9		address("g1manfred47kzduec920z88wfr64ylksmdcedlf5"), // @moul
10		address("g125em6arxsnj49vx35f0n0z34putv5ty3376fg5"), // @leohhhn
11	)
12	Auth = authz.NewWithAuthority(GnoDevRels)
13)
14
15func Render(_ string) string {
16	return Auth.Authority().String()
17}