···55// Created by Thomas Rademaker on 10/10/25.
66//
7788+import JWTKit
99+810@APActor
911public class APEnvironment {
1012 public static var current: APEnvironment = APEnvironment()
···1416 public var refreshToken: String?
1517 public var atProtocoldelegate: CoreATProtocolDelegate?
1618 public var tokenRefreshHandler: (@Sendable () async throws -> Bool)?
1919+ public var dpopPrivateKey: ES256PrivateKey?
2020+ public var dpopKeys: JWTKeyCollection?
1721 public let routerDelegate = APRouterDelegate()
18221923 private init() {}