mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-07-27 01:05:18 -04:00

find -name '*.go' -exec sed -i 's/SPDX-License-Identifier: AGPL-3.0-only/SPDX-License-Identifier: BUSL-1.1/' {} +
15 lines
493 B
Go
15 lines
493 B
Go
/*
|
|
Copyright (c) Edgeless Systems GmbH
|
|
|
|
SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
/*
|
|
The api module is used to bundle the Constellation operator API into a separate module.
|
|
This allows us to use the types from the API in other places than the operators themself, without having modules mutually depend on each other.
|
|
We can also publish this API more easily if we decide to do so.
|
|
|
|
Model for this approach is the Kubernetes API itself: https://pkg.go.dev/k8s.io/api#section-readme
|
|
*/
|
|
|
|
package api
|