error-pages/l10n/enbed.go
2024-07-03 18:12:13 +04:00

10 lines
205 B
Go

package l10n
import _ "embed"
//go:embed l10n.js
var content string
// L10n returns the content of the JS file with a script for automatic error page localization.
func L10n() string { return content }