blob: 551cd191e3e01e1927b96b230c66ef5ea03f83a5 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import Foundation
/// A stored sr.ht account (token + resolved username).
struct AccountEntry: Codable, Identifiable, Equatable, Sendable {
let id: String
var username: String
var token: String
}
|