From 7b59ee6098c4649a51cafe4b58e3a675567e2c08 Mon Sep 17 00:00:00 2001 From: Christian Cleberg Date: Wed, 1 Apr 2026 11:36:01 -0500 Subject: feat: add multi-account support Implements: https://todo.sr.ht/~ccleberg/Hutch/11 --- Hutch/Models/AccountEntry.swift | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Hutch/Models/AccountEntry.swift (limited to 'Hutch/Models') diff --git a/Hutch/Models/AccountEntry.swift b/Hutch/Models/AccountEntry.swift new file mode 100644 index 0000000..551cd19 --- /dev/null +++ b/Hutch/Models/AccountEntry.swift @@ -0,0 +1,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 +} -- cgit v1.2.3