mirror of
https://github.com/tarampampam/error-pages.git
synced 2024-08-30 18:22:40 +00:00
10 lines
205 B
Go
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 }
|