using blink shell's ssh for ssh instead of nmsssh idk why it doesnt work

This commit is contained in:
neon443
2025-06-05 12:46:42 +01:00
parent 7d206478ea
commit 4e2c47f09a
7 changed files with 249 additions and 5 deletions

View File

@@ -6,15 +6,20 @@
//
import SwiftUI
import NMSSH
struct ContentView: View {
var sshHandler = SSHHandler()
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
Button("go") {
sshHandler.connect()
sshHandler.testExec()
}
}
.padding()
}