mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-08-06 05:54:28 -04:00

find -name '*.go' -exec sed -i 's/SPDX-License-Identifier: AGPL-3.0-only/SPDX-License-Identifier: BUSL-1.1/' {} +
15 lines
331 B
Go
15 lines
331 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
package data
|
|
|
|
import "github.com/edgelesssys/constellation/v2/internal/semver"
|
|
|
|
// ProviderData is the data that get's passed down from the provider
|
|
// configuration to the resources and data sources.
|
|
type ProviderData struct {
|
|
Version semver.Semver
|
|
}
|