You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Harshavardhana
5268a62166
|
10 years ago | |
---|---|---|
.. | ||
.gitignore | 10 years ago | |
README.md | 10 years ago | |
formatter.go | 10 years ago | |
minio-cli.go | 10 years ago |
README.md
Introduction
minio-cli
is option stub builder for minio
project using codegangsta/cli,
The idea is to be able to do rapid prototyping and facilitate new contributors to the project
Usage
You just need to set its application name and options:
$ minio-cli -options option1,option2,option3 [application]
Generates three files namely [application].go, [application]-options.go, [application].md
Example
If you want to start to building bucket
application which has subcommands get
, put
, list
:
$ minio-cli -options get,put,list foo
$ ls foo/
foo-options.go foo.go foo.md
Installation
$ go get github.com/minio-io/minio
$ make install