add swift nio ssh

This commit is contained in:
neon443
2025-06-04 21:33:30 +01:00
parent 024b88cd6b
commit 3ffb137d08
6 changed files with 161 additions and 30 deletions

View File

@@ -0,0 +1,24 @@
//
// ContentView.swift
// ShhShell
//
// Created by neon443 on 02/06/2025.
//
import SwiftUI
struct ContentView: View {
var body: some View {
VStack {
Image(systemName: "globe")
.imageScale(.large)
.foregroundStyle(.tint)
Text("Hello, world!")
}
.padding()
}
}
#Preview {
ContentView()
}