server/lfs/ssh_client.go 🔗
@@ -1,3 +1,9 @@
package lfs
+import "github.com/charmbracelet/ssh"
+
// TODO: implement Git LFS SSH client.
+
+type sshClient struct {
+ s ssh.Session
+}
Ayman Bagabas created
server/lfs/ssh_client.go | 6 ++++++
1 file changed, 6 insertions(+)
@@ -1,3 +1,9 @@
package lfs
+import "github.com/charmbracelet/ssh"
+
// TODO: implement Git LFS SSH client.
+
+type sshClient struct {
+ s ssh.Session
+}