fix Package.swift: remove NIOIMAPCore product reference (only NIOIMAP is exported by swift-nio-imap) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
207 B
Swift
10 lines
207 B
Swift
public struct Credentials: Sendable {
|
|
public var username: String
|
|
public var password: String
|
|
|
|
public init(username: String, password: String) {
|
|
self.username = username
|
|
self.password = password
|
|
}
|
|
}
|