mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-20 13:06:51 +00:00
feat: upstream enterprise preview --------- Signed-off-by: Oliver Baehler <oliver@sudo-i.net> Co-authored-by: CorentinPtrl <pitrel.corentin@gmail.com>
14 lines
264 B
Go
14 lines
264 B
Go
// Copyright 2020-2026 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package quota
|
|
|
|
// +kubebuilder:validation:Enum=add;sub;count
|
|
type Operation string
|
|
|
|
const (
|
|
OpAdd Operation = "add"
|
|
OpSub Operation = "sub"
|
|
OpCount Operation = "count"
|
|
)
|