error-pages/l10n/enbed.go

10 lines
205 B
Go
Raw Permalink Normal View History

2024-07-03 14:12:13 +00:00
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 }