1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-11-07 19:13:01 +00:00

Move the main help page

It was on /help/en/index, now it is on both /help/en and /help
This commit is contained in:
Timur Ismagilov
2021-07-12 15:01:53 +05:00
parent bea80887f4
commit b1489cf11f
4 changed files with 6 additions and 3 deletions

View File

@@ -5,11 +5,14 @@ import (
"embed"
)
//go:embed en
//go:embed en en.myco
var fs embed.FS
// Get determines what help text you need and returns it. The path is a substring from URL, it follows this form:
// <language>/<topic>
func Get(path string) ([]byte, error) {
if path == "" {
return Get("en")
}
return fs.ReadFile(path + ".myco")
}