Files
darwin-apk/Sources/dpk-cli/PatternMatcher.swift

13 lines
263 B
Swift
Raw Normal View History

2024-11-15 23:59:56 +11:00
/*
* darwin-apk © 2024 Gay Pizza Specifications
* SPDX-License-Identifier: Apache-2.0
*/
import Foundation
import ArgumentParser
protocol PatternMatcher {
init(patterns: [String], ignoreCase: Bool) throws(ExitCode)
func match(_ field: String) -> Bool
}