Files
ShhShell/ShhShell/Host/History.swift
neon443 3e713b8561 added history view
added history loading and saving functions
added a thingy that will combine multiple entries like the phone app
added history data struct
fix hosts with no name just bneing called " copy" when duplicated
remove the showterminal button
fix crash when closing the terminal
2025-08-15 13:05:57 +01:00

16 lines
188 B
Swift

//
// History.swift
// ShhShell
//
// Created by neon443 on 15/08/2025.
//
import Foundation
struct History: Identifiable {
var id: UUID = UUID()
var host: Host
var count: Int
}