mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-05-06 01:16:44 +00:00
feat(v1beta1): remove unused structs and functions from v1beta1. Rename v1alpha1 structs to follow new naming. Move v1alpha1 structs to separate files
13 lines
245 B
Go
13 lines
245 B
Go
// Copyright 2020-2021 Clastix Labs
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package v1beta1
|
|
|
|
import (
|
|
networkingv1 "k8s.io/api/networking/v1"
|
|
)
|
|
|
|
type NetworkPolicySpec struct {
|
|
Items []networkingv1.NetworkPolicySpec `json:"items,omitempty"`
|
|
}
|