mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-06 18:32:50 +08:00
14 lines
294 B
Go
14 lines
294 B
Go
//go:build !nosource
|
|
|
|
package gui
|
|
|
|
import (
|
|
"AynaLivePlayer/core/model"
|
|
"AynaLivePlayer/pkg/config"
|
|
"fmt"
|
|
)
|
|
|
|
func getAppTitle() string {
|
|
return fmt.Sprintf("%s Ver %s - 测试版 仅供开发人员测试使用 请勿用于其他用途", config.ProgramName, model.Version(config.Version))
|
|
}
|