Search Apps Documentation Source Content File Folder Download Copy Actions Download

mdlink.gno

0.14 Kb · 11 lines
 1package mdlink
 2
 3var message string
 4
 5func SetMessage(cur realm, m string) {
 6	message = m
 7}
 8
 9func Render(_ string) string {
10	return message
11}