add imap client protocol, types, mock for testing
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public protocol IMAPClientProtocol: Sendable {
|
||||
func connect() async throws
|
||||
func disconnect() async throws
|
||||
func listMailboxes() async throws -> [IMAPMailboxInfo]
|
||||
func selectMailbox(_ name: String) async throws -> IMAPMailboxStatus
|
||||
func fetchEnvelopes(uidsGreaterThan uid: Int) async throws -> [FetchedEnvelope]
|
||||
func fetchFlags(uids: ClosedRange<Int>) async throws -> [UIDFlagsPair]
|
||||
func fetchBody(uid: Int) async throws -> (text: String?, html: String?)
|
||||
}
|
||||
Reference in New Issue
Block a user