mirror of
https://codeberg.org/PLG-Development/PLG-MuDiCS
synced 2026-07-05 16:37:09 +00:00
b0a57f9c67
Co-authored-by: 2mal3 <56305732+2mal3@users.noreply.github.com>
14 lines
216 B
Go
14 lines
216 B
Go
package shared
|
|
|
|
import (
|
|
_ "embed"
|
|
"strings"
|
|
)
|
|
|
|
//go:embed splash_screen.html
|
|
var SplashScreenTemplate string
|
|
|
|
//go:embed version.txt
|
|
var versionNotTrimmed string
|
|
var Version = strings.TrimSpace(versionNotTrimmed)
|