add upload command

This commit is contained in:
Yasuhiro Matsumoto 2017-04-17 13:56:06 +09:00
parent af67397430
commit b74e25cee2
2 changed files with 38 additions and 0 deletions

View file

@ -213,6 +213,11 @@ func makeApp() *cli.App {
Usage: "show followers",
Action: cmdFollowers,
},
{
Name: "upload",
Usage: "upload file",
Action: cmdUpload,
},
}
return app
}