Add parse error
Some checks failed
gitea-openium/resgen.swift/pipeline/head There was a failure building this commit

This commit is contained in:
2023-12-11 11:19:19 +01:00
parent f1b62d83c4
commit f6c49bf626
5 changed files with 33 additions and 21 deletions

View File

@@ -19,4 +19,11 @@ enum TrackerType: CaseIterable {
"firebase"
}
}
static func hasValidTarget(in targets: String) -> Bool {
for tracker in Self.allCases where targets.contains(tracker.value) {
return true
}
return false
}
}