github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/cluster/consts.go (about) 1 /* 2 * Copyright (c) 2024-present unTill Software Development Group B.V. 3 * @author Denis Gribanov 4 */ 5 6 package cluster 7 8 import ( 9 "embed" 10 11 "github.com/voedger/voedger/pkg/appdef" 12 ) 13 14 //go:embed appws.vsql 15 var schemaFS embed.FS 16 17 const ( 18 ClusterPackage = "cluster" 19 ClusterPackageFQN = "github.com/voedger/voedger/pkg/" + ClusterPackage 20 Field_ClusterAppID = "ClusterAppID" 21 Field_AppQName = "AppQName" 22 Field_NumPartitions = "NumPartitions" 23 Field_NumAppWorkspaces = "NumAppWorkspaces" 24 ) 25 26 var ( 27 QNameViewDeployedApps = appdef.NewQName(ClusterPackage, "DeployedApps") 28 qNameWDocApp = appdef.NewQName(ClusterPackage, "App") 29 )