constellation/operators/constellation-node-operator/api/api.go
Otto Bittner aa422bb648
operators: move api into a dedicated submodule (#1164)
This allows external modules to import the API types more cleanly.
2023-02-13 11:52:36 +01:00

16 lines
498 B
Go

/*
Copyright (c) Edgeless Systems GmbH
SPDX-License-Identifier: AGPL-3.0-only
*/
/*
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