Files
ShhShell/ShhShell/SSH/SSHState.swift

17 lines
196 B
Swift

//
// SSHState.swift
// ShhShell
//
// Created by neon443 on 25/06/2025.
//
import Foundation
enum SSHState {
case idle
case connecting
case authorizing
case authorized
case shellOpen
}