mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-05 16:37:09 +00:00
14 lines
219 B
Go
14 lines
219 B
Go
package shared
|
|
|
|
import (
|
|
_ "embed"
|
|
"strings"
|
|
)
|
|
|
|
//go:embed splash_screen.html
|
|
var RawSplashScreenTemplate string
|
|
|
|
//go:embed version.txt
|
|
var versionNotTrimmed string
|
|
var Version = strings.TrimSpace(versionNotTrimmed)
|