yao/share/const.go
Max 77d59b203e Update version constants to 1.0.0 for Yao App Engine
•	Changed VERSION and CUI constants from 0.10.5 to 1.0.0 to reflect the upcoming release.
	•	Ensured consistency in versioning across the application.

⚠️ Note: Version 1.0.0 is still under development — this PR does not represent an official release.
2025-11-06 18:20:49 +08:00

34 lines
723 B
Go

package share
// VERSION Yao App Engine Version
const VERSION = "1.0.0"
// PRVERSION Yao App Engine PR Commit
const PRVERSION = "DEV"
// CUI Version
const CUI = "1.0.0"
// PRCUI CUI PR Commit
const PRCUI = "DEV"
// BUILDIN If true, the application will be built into a single artifact
const BUILDIN = false
// BUILDNAME The name of the artifact
const BUILDNAME = "yao"
// MoapiHosts the master mirror
var MoapiHosts = []string{
"master.moapi.ai",
"master-moon.moapi.ai",
"master-earth.moapi.ai",
"master-mars.moapi.ai",
"master-venus.moapi.ai",
"master-mercury.moapi.ai",
"master-jupiter.moapi.ai",
"master-saturn.moapi.ai",
"master-uranus.moapi.ai",
"master-neptune.moapi.ai",
"master-pluto.moapi.ai",
}