Skip to content

Commit a1509b3

Browse files
committed
Fix spacing
1 parent 647b07c commit a1509b3

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

keystore/admin.go

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,31 +18,38 @@ import (
1818
type CreateKeysRequest struct {
1919
Keys []CreateKeyRequest
2020
}
21+
2122
type CreateKeyRequest struct {
2223
KeyName string
2324
KeyType KeyType
2425
}
26+
2527
type CreateKeysResponse struct {
2628
Keys []CreateKeyResponse
2729
}
30+
2831
type CreateKeyResponse struct {
2932
KeyInfo KeyInfo
3033
}
34+
3135
type DeleteKeysRequest struct {
3236
KeyNames []string
3337
}
3438

3539
type DeleteKeysResponse struct{}
40+
3641
type ImportKeysRequest struct {
3742
Keys []ImportKeyRequest
3843
}
44+
3945
type ImportKeyRequest struct {
4046
KeyName string
4147
KeyType KeyType
4248
Data []byte
4349
}
4450

4551
type ImportKeysResponse struct{}
52+
4653
type ExportKeyParam struct {
4754
KeyName string
4855
Enc EncryptionParams
@@ -51,9 +58,11 @@ type ExportKeyParam struct {
5158
type ExportKeysRequest struct {
5259
Keys []ExportKeyParam
5360
}
61+
5462
type ExportKeysResponse struct {
5563
Keys []ExportKeyResponse
5664
}
65+
5766
type ExportKeyResponse struct {
5867
KeyName string
5968
Data []byte
@@ -62,6 +71,7 @@ type ExportKeyResponse struct {
6271
type SetMetadataRequest struct {
6372
Updates []SetMetadataUpdate
6473
}
74+
6575
type SetMetadataUpdate struct {
6676
KeyName string
6777
Metadata []byte

0 commit comments

Comments
 (0)