Files
capsule/api/v1alpha1/domain/allowed.go
T

10 lines
185 B
Go

// Copyright 2020-2021 Clastix Labs
// SPDX-License-Identifier: Apache-2.0
package domain
type AllowedList interface {
ExactMatch(value string) bool
RegexMatch(value string) bool
}