From 6d4100dbceb9a43a66bad3ce91cee039198130c3 Mon Sep 17 00:00:00 2001 From: Jonas L Date: Wed, 29 May 2024 14:19:59 +0200 Subject: [PATCH] fix(exp): rename to `sshutils` package name (#450) The package url and name were different. Use the `sshutils` package name to prevent collision with the stdlib ssh package. --- hcloud/exp/kit/{ssh => sshutils}/ssh_key.go | 2 +- hcloud/exp/kit/{ssh => sshutils}/ssh_key_test.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename hcloud/exp/kit/{ssh => sshutils}/ssh_key.go (99%) rename hcloud/exp/kit/{ssh => sshutils}/ssh_key_test.go (98%) diff --git a/hcloud/exp/kit/ssh/ssh_key.go b/hcloud/exp/kit/sshutils/ssh_key.go similarity index 99% rename from hcloud/exp/kit/ssh/ssh_key.go rename to hcloud/exp/kit/sshutils/ssh_key.go index efc45092..01a23312 100644 --- a/hcloud/exp/kit/ssh/ssh_key.go +++ b/hcloud/exp/kit/sshutils/ssh_key.go @@ -1,4 +1,4 @@ -package sshkey +package sshutils import ( "crypto" diff --git a/hcloud/exp/kit/ssh/ssh_key_test.go b/hcloud/exp/kit/sshutils/ssh_key_test.go similarity index 98% rename from hcloud/exp/kit/ssh/ssh_key_test.go rename to hcloud/exp/kit/sshutils/ssh_key_test.go index a8e47576..3e2413a0 100644 --- a/hcloud/exp/kit/ssh/ssh_key_test.go +++ b/hcloud/exp/kit/sshutils/ssh_key_test.go @@ -1,4 +1,4 @@ -package sshkey +package sshutils import ( "strings"