source.gno
0.46 Kb ยท 17 lines
1package source
2
3// Welcome to the source code of this realm!
4
5func Render(_ string) string {
6 return `# Viewing source code
7gno.land makes it easy to view the source code of any pure
8package or realm, by using ABCI queries.
9
10gno.land's web frontend, ` + "`gnoweb`, " + ` makes this easy by
11providing a intuitive UI that fetches the source of the
12realm, that you can inspect anywhere by simply clicking
13on the [source] button.
14
15Check it out in the top right corner!
16`
17}