mirror of
https://github.com/siderolabs/omni.git
synced 2026-05-04 14:21:36 +02:00
Bump copyright for conformance to 2026 Signed-off-by: Edward Sammut Alessi <edward.sammutalessi@siderolabs.com>
19 lines
414 B
Go
19 lines
414 B
Go
// Copyright (c) 2026 Sidero Labs, Inc.
|
|
//
|
|
// Use of this software is governed by the Business Source License
|
|
// included in the LICENSE file.
|
|
|
|
package scope
|
|
|
|
// Action represents an action in the scope.
|
|
type Action string
|
|
|
|
// Action constants.
|
|
const (
|
|
ActionRead Action = "read"
|
|
ActionCreate Action = "create"
|
|
ActionModify Action = "modify"
|
|
ActionDestroy Action = "destroy"
|
|
ActionAny Action = "*"
|
|
)
|