mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-11-01 02:57:59 +00:00
command/get,put
This commit is contained in:
18
commands.go
18
commands.go
@@ -24,15 +24,17 @@ func init() {
|
||||
}, nil
|
||||
},
|
||||
|
||||
/*
|
||||
"get": func() (cli.Command, error) {
|
||||
return nil, nil
|
||||
},
|
||||
"get": func() (cli.Command, error) {
|
||||
return &command.GetCommand{
|
||||
Meta: meta,
|
||||
}, nil
|
||||
},
|
||||
|
||||
"put": func() (cli.Command, error) {
|
||||
return nil, nil
|
||||
},
|
||||
*/
|
||||
"put": func() (cli.Command, error) {
|
||||
return &command.PutCommand{
|
||||
Meta: meta,
|
||||
}, nil
|
||||
},
|
||||
|
||||
"seal": func() (cli.Command, error) {
|
||||
return &command.SealCommand{
|
||||
|
||||
Reference in New Issue
Block a user