add delete command

This commit is contained in:
Yasuhiro Matsumoto 2017-04-20 02:04:20 +09:00
parent 293a9e0aba
commit 1a101faaae
4 changed files with 76 additions and 0 deletions

View file

@ -257,6 +257,11 @@ func makeApp() *cli.App {
Usage: "upload file",
Action: cmdUpload,
},
{
Name: "delete",
Usage: "delete status",
Action: cmdDelete,
},
}
app.Setup()
return app