mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-02-14 18:09:58 +00:00
15 lines
279 B
Go
15 lines
279 B
Go
// Copyright 2020-2021 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package api
|
|
|
|
import (
|
|
networkingv1 "k8s.io/api/networking/v1"
|
|
)
|
|
|
|
// +kubebuilder:object:generate=true
|
|
|
|
type NetworkPolicySpec struct {
|
|
Items []networkingv1.NetworkPolicySpec `json:"items,omitempty"`
|
|
}
|