10 lines
181 B
Swift
10 lines
181 B
Swift
@testable import CodexBar
|
|
|
|
struct NoopKimiK2TokenStore: KimiK2TokenStoring {
|
|
func loadToken() throws -> String? {
|
|
nil
|
|
}
|
|
|
|
func storeToken(_: String?) throws {}
|
|
}
|