Moving minio command to cmd/minio

This commit is contained in:
Frederick F. Kautz IV 2014-11-14 18:20:40 -07:00
parent 2679324afe
commit f8f9f65652
3 changed files with 31 additions and 2 deletions

View File

@ -5,10 +5,10 @@ all: test install
test:
mkdir -p cover
godep go test -race -coverprofile=cover/cover.out github.com/minio-io/minio
godep go test -race github.com/minio-io/minio/minio
godep go test -race github.com/minio-io/minio/cmd/minio
install:
godep go install -race github.com/minio-io/minio/minio
godep go install -race github.com/minio-io/minio/cmd/minio
save:
godep save ./...

29
cmd/minio-sandbox/main.go Normal file
View File

@ -0,0 +1,29 @@
package main
import (
"github.com/codegangsta/cli"
"log"
"os"
)
func main() {
app := cli.NewApp()
app.Commands = []cli.Command{
{
Name: "put",
Usage: "Start a storage node",
Action: func(c *cli.Context) {
},
},
{
Name: "get",
Usage: "Start a gateway node",
Action: func(c *cli.Context) {
},
},
}
err := app.Run(os.Args)
if err != nil {
log.Fatal("App failed to load", err)
}
}