github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/apps/sys/blobberapp/const.go (about)

     1  /*
     2   * Copyright (c) 2020-present unTill Pro, Ltd.
     3   * @author Denis Gribanov
     4   */
     5  
     6  package blobberapp
     7  
     8  import (
     9  	"embed"
    10  
    11  	"github.com/voedger/voedger/pkg/appparts"
    12  )
    13  
    14  //go:embed schema.vsql
    15  var blobberSchemaFS embed.FS
    16  
    17  const BlobberAppFQN = "github.com/voedger/voedger/pkg/apps/sys/blobberapp"
    18  
    19  const DefDeploymentPartsCount = 10
    20  
    21  var DefDeploymentEnginePoolSize = appparts.PoolSize(10, 10, 10)