MCPcopy
hub / github.com/superplanehq/superplane / GetInstallationMetadata

Function GetInstallationMetadata

pkg/models/installation_metadata.go:23–25  ·  view source on GitHub ↗
(tx *gorm.DB)

Source from the content-addressed store, hash-verified

21}
22
23func GetInstallationMetadata(tx *gorm.DB) (*InstallationMetadata, error) {
24 return findOrCreateInstallationMetadata(tx)
25}
26
27func GetInstallationID(tx *gorm.DB) (string, error) {
28 metadata, err := findOrCreateInstallationMetadata(tx)

Calls 1