mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-03-04 18:50:31 +00:00
11 lines
217 B
Go
11 lines
217 B
Go
// Copyright 2020-2026 Project Capsule Authors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
package meta
|
|
|
|
const (
|
|
ValueTrue string = "true"
|
|
ValueFalse string = "false"
|
|
ValueController string = "controller"
|
|
)
|