github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/sys/workspace/types.go (about)

     1  /*
     2   * Copyright (c) 2022-present unTill Pro, Ltd.
     3   */
     4  
     5  package workspace
     6  
     7  import (
     8  	"github.com/voedger/voedger/pkg/appdef"
     9  	"github.com/voedger/voedger/pkg/istructs"
    10  	"github.com/voedger/voedger/pkg/utils/federation"
    11  )
    12  
    13  // template recordID -> template fieldName -> uploaded blobID to set to fieldName
    14  type blobsMap map[int64]map[string]int64
    15  
    16  type WSPostInitFunc func(targetAppQName istructs.AppQName, wsKind appdef.QName, newWSID istructs.WSID, federation federation.IFederation, authToken string) (err error)