mirror of
https://github.com/GayPizzaSpecifications/darwin-apk.git
synced 2025-08-03 13:31:32 +00:00
13 lines
263 B
Swift
13 lines
263 B
Swift
/*
|
|
* 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
|
|
}
|