chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:22:33 +08:00
commit fc4fcbab58
1848 changed files with 472303 additions and 0 deletions
@@ -0,0 +1,30 @@
import Foundation
public enum KiloUsageDataSource: String, CaseIterable, Identifiable, Sendable {
case auto
case api
case cli
public var id: String {
self.rawValue
}
public var displayName: String {
switch self {
case .auto: "Auto"
case .api: "API"
case .cli: "CLI"
}
}
public var sourceLabel: String {
switch self {
case .auto:
"auto"
case .api:
"api"
case .cli:
"cli"
}
}
}