mirror of
https://github.com/siderolabs/omni.git
synced 2026-04-18 06:21:01 +02:00
Bump copyright for conformance to 2026 Signed-off-by: Edward Sammut Alessi <edward.sammutalessi@siderolabs.com>
22 lines
572 B
Go
22 lines
572 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
|
|
|
|
// Object represents Scope target.
|
|
type Object string
|
|
|
|
// Object constants.
|
|
const (
|
|
// ObjectCluster holds Cluster and everything below it.
|
|
ObjectCluster = "cluster"
|
|
// ObjectMachine is the constant for Machines.
|
|
ObjectMachine = "machine"
|
|
// ObjectUser is the constant for Users.
|
|
ObjectUser = "user"
|
|
// ObjectServiceAccount is the constant for Service accounts.
|
|
ObjectServiceAccount = "service-account"
|
|
)
|