mirror of
https://github.com/minio/minio.git
synced 2025-11-07 12:52:58 -05:00
Creating subdirectories in fs now works
This commit is contained in:
7
main.go
7
main.go
@@ -11,7 +11,8 @@ func parseInput(c *cli.Context) {
|
||||
tls := c.Bool("tls")
|
||||
certFile := c.String("cert")
|
||||
keyFile := c.String("key")
|
||||
server.Start(":8080", tls, certFile, keyFile)
|
||||
inmemory := c.Bool("inmemory")
|
||||
server.Start(":8080", tls, certFile, keyFile, inmemory)
|
||||
}
|
||||
|
||||
func main() {
|
||||
@@ -33,6 +34,10 @@ func main() {
|
||||
Value: "",
|
||||
Usage: "key file path",
|
||||
},
|
||||
cli.BoolFlag{
|
||||
Name: "inmemory",
|
||||
Usage: "in memory storage",
|
||||
},
|
||||
}
|
||||
app.Flags = flags
|
||||
app.Action = parseInput
|
||||
|
||||
Reference in New Issue
Block a user