Lowercase importer names

This commit is contained in:
Sven Weidauer 2022-10-08 11:42:42 +02:00
parent d7d34812cf
commit 012203a4f3

View file

@ -8,6 +8,6 @@ protocol Importer {
extension Importer { extension Importer {
static var option: String { static var option: String {
String(String(describing: self).droppingSuffix("Importer")) String(describing: self).droppingSuffix("Importer").lowercased()
} }
} }