defaults.go (336B)
1 package defaults 2 3 import ( 4 _ "embed" 5 ) 6 7 //go:embed sample-about.md 8 var DEFAULT_ABOUT string 9 10 //go:embed sample-logo.html 11 var DEFAULT_LOGO string 12 13 //go:embed sample-rules.md 14 var DEFAULT_RULES string 15 16 //go:embed sample-verification-instructions.md 17 var DEFAULT_VERIFICATION string 18 19 //go:embed sample-config.toml 20 var DEFAULT_CONFIG string