mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-23 22:46:59 +00:00
10 lines
280 B
Go
10 lines
280 B
Go
// Copyright 2020-2023 Project Capsule Authors.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package v1alpha1
|
|
|
|
type AdditionalMetadata struct {
|
|
Labels map[string]string `json:"additionalLabels,omitempty"`
|
|
Annotations map[string]string `json:"additionalAnnotations,omitempty"`
|
|
}
|