blob: 8850a2643e7fa9fe7c77cf70fe666e87f54080da (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
//
// AuthState.swift
// octosentry
//
import Foundation
nonisolated enum AuthState {
case signedOut
case awaitingAuthorization(userCode: String, verificationURL: URL)
case signedIn
}
|