mirror of
https://github.com/AynaLivePlayer/AynaLivePlayer.git
synced 2025-12-06 10:22:50 +08:00
14 lines
237 B
Go
14 lines
237 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))
|
|
}
|