mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-20 04:56:44 +00:00
10 lines
184 B
Go
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
|
|
}
|