mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-11 10:25:52 +02:00
12 lines
183 B
Go
12 lines
183 B
Go
//go:build !unembed
|
|
|
|
package app
|
|
|
|
import (
|
|
"embed"
|
|
)
|
|
|
|
//go:embed i18n.json dist/* dist/*/* src/language/* src/language/*/*
|
|
var DistFS embed.FS
|
|
|
|
var VersionPath = "dist/version.json"
|