another.im-ios/AnotherIM/xmpp/XMPPStorage.swift

19 lines
358 B
Swift
Raw Normal View History

2024-12-17 08:34:44 +00:00
import Foundation
typealias Credentials = [String: String]
protocol XMPPStorage: AnyObject {
// credentials
func getCredentialsByUUID(_ uuid: UUID) async -> Credentials?
// roster
func getRosterVersion(jid: JID) async -> String?
func setRosterVersion(jid: JID, ver: String) async
// messages
// omemo
// whatever else
}