17 lines
456 B
Swift
17 lines
456 B
Swift
//
|
|
// KeychainControllerProtocol.swift
|
|
// ElementX
|
|
//
|
|
// Created by Stefan Ceriu on 14.02.2022.
|
|
// Copyright © 2022 Element. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
protocol KeychainControllerProtocol {
|
|
func setAccessToken(_ accessToken: String, forUsername username: String)
|
|
func accessTokenForUsername(_ username: String) -> String?
|
|
func accessTokens() -> [(username: String, accessToken: String)]
|
|
func removeAllAccessTokens()
|
|
}
|