mirror of
https://github.com/neon443/ShhShell.git
synced 2026-03-11 13:26:16 +00:00
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
16 lines
188 B
Swift
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
|
|
}
|