From 04a828d1bab8dc8498d8337187144ffb20e6f93d Mon Sep 17 00:00:00 2001 From: Mike Wyatt Date: Tue, 22 Oct 2024 19:27:36 -0300 Subject: [PATCH] cleanup --- src/ssh_endpoint/main.go | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/src/ssh_endpoint/main.go b/src/ssh_endpoint/main.go index 3a36340..01e28ac 100644 --- a/src/ssh_endpoint/main.go +++ b/src/ssh_endpoint/main.go @@ -91,30 +91,3 @@ func ParseSshEndpoint(server string) (*SshEndpoint, error) { SshConfigPort: ssh_config.Get(parsed.Hostname(), "Port"), }, nil } - -// type Wut struct { -// } - -// func (w *Wut) DoIt() { -// fmt.Println("Doing it!") -// } - -// type Huh struct { -// } - -// func (w *Huh) DoIt() { -// fmt.Println("Doing it!") -// } - -// type Luh interface { -// DoIt() -// } - -// func luh(w Luh) { -// w.DoIt() -// } - -// func giver() { -// luh(Luh(&Wut{})) -// luh(Luh(&Huh{})) -// }