command/get,put

This commit is contained in:
Mitchell Hashimoto
2015-03-04 11:08:13 -08:00
parent d8ec17588c
commit d7606d13d5
3 changed files with 123 additions and 8 deletions

View File

@@ -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{