mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-12-26 15:02:39 +01:00
25 lines
518 B
Swift
25 lines
518 B
Swift
import SwiftUI
|
|
import Models
|
|
import Network
|
|
|
|
@MainActor
|
|
public class AppAccountViewModel: ObservableObject {
|
|
let appAccount: AppAccount
|
|
let client: Client
|
|
|
|
@Published var account: Account?
|
|
|
|
init(appAccount: AppAccount) {
|
|
self.appAccount = appAccount
|
|
self.client = .init(server: appAccount.server, oauthToken: appAccount.oauthToken)
|
|
}
|
|
|
|
func fetchAccount() async {
|
|
do {
|
|
account = try await client.get(endpoint: Accounts.verifyCredentials)
|
|
} catch {
|
|
print(error)
|
|
}
|
|
}
|
|
}
|