11 lines
396 B
Go
11 lines
396 B
Go
// Package appmeta provides shared application metadata used by both the
|
|
// bootstrap loader process and the standalone UI client process.
|
|
package appmeta
|
|
|
|
const (
|
|
// AppID is the shared Fyne application identifier used for a common storage root.
|
|
AppID = "GalaxyPlus"
|
|
// DefaultBackendURL is the default backend HTTP endpoint used by local runs.
|
|
DefaultBackendURL = "http://127.0.0.1:8080"
|
|
)
|