1. Major Changes: - Migrate all XGen references to CUI - Update project naming conventions across codebase 2. License Updates: - Revise open source license terms - Update copyright and usage conditions This is a breaking change that requires updates in dependent projects.
34 lines
741 B
Go
34 lines
741 B
Go
package share
|
|
|
|
// VERSION Yao App Engine Version
|
|
const VERSION = "0.10.5"
|
|
|
|
// PRVERSION Yao App Engine PreRelease Version
|
|
const PRVERSION = "DEV"
|
|
|
|
// CUI Version
|
|
const CUI = "0.10.5"
|
|
|
|
// PRECUI PreRelease Version
|
|
const PRECUI = "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",
|
|
}
|