Skip to content

Instantly share code, notes, and snippets.

@thomsmed
Created December 31, 2021 16:56
Show Gist options
  • Select an option

  • Save thomsmed/e47fcccb54a65d0e74fc188417d803d7 to your computer and use it in GitHub Desktop.

Select an option

Save thomsmed/e47fcccb54a65d0e74fc188417d803d7 to your computer and use it in GitHub Desktop.
AuthTokenProvider.swift - From "Share authentication state across your apps, App Clips and Widgets" @ medium.com
//
// AuthTokenProvider.swift
//
import Foundation
protocol AuthTokenProvider: AnyObject {
func performWithFreshToken(_ action: @escaping (Result<String, Error>) -> Void)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment