24 lines
534 B
Swift
24 lines
534 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Amplify
|
|
import Foundation
|
|
import AppSyncRealTimeClient
|
|
|
|
class OIDCAuthProviderWrapper: OIDCAuthProviderAsync {
|
|
|
|
let authTokenProvider: AmplifyAuthTokenProvider
|
|
|
|
public init(authTokenProvider: AmplifyAuthTokenProvider) {
|
|
self.authTokenProvider = authTokenProvider
|
|
}
|
|
|
|
func getLatestAuthToken() async throws -> String {
|
|
try await authTokenProvider.getLatestAuthToken()
|
|
}
|
|
}
|