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.
 
 
 
 
 
 
minio/cmd/new-cmd
Harshavardhana 6b36b5c551 A full restructure 10 years ago
..
templates A full restructure 10 years ago
.gitignore A full restructure 10 years ago
README.md A full restructure 10 years ago
formatter.go A full restructure 10 years ago
minio-cli.go A full restructure 10 years ago

README.md

Introduction

minio-cli is a stub builder for new commands,options on top of codegangsta/cli,

Idea behind providing a simple tool for rapid prototyping and encouraging new contributors to the project

Usage

You just need to set its command name and options:

$ minio-cli -options option1,option2,option3 [command]

Generates three files namely [command].go, [command]-options.go, [command].md

Example

If you want to start to building bucket command which has options get, put, list:

$ minio-cli -options get,put,list bucket
$ ls bucket/
bucket-options.go  bucket.go  bucket.md