Files
capsule/api/utils/allowed.go
T

10 lines
184 B
Go

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