From e65f5e802fc7a59ba077f92fa7f5b30e6b20879b Mon Sep 17 00:00:00 2001 From: Yousong Zhou Date: Tue, 11 Jun 2019 17:08:13 +0000 Subject: [PATCH] =?UTF-8?q?mcclient:=20models:=20=E6=B7=BB=E5=8A=A0SshKeyp?= =?UTF-8?q?air?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkg/mcclient/models/sshkeypairs.go | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 pkg/mcclient/models/sshkeypairs.go diff --git a/pkg/mcclient/models/sshkeypairs.go b/pkg/mcclient/models/sshkeypairs.go new file mode 100644 index 0000000000..d56640370c --- /dev/null +++ b/pkg/mcclient/models/sshkeypairs.go @@ -0,0 +1,6 @@ +package models + +type SshKeypair struct { + PrivateKey string + PublicKey string +}