Refactoring miniosd and minios to a single binary minio

This commit is contained in:
Frederick F. Kautz IV
2014-11-02 14:33:53 -05:00
parent 631b3bbf2e
commit dca2f84bc9
4 changed files with 3 additions and 12 deletions

10
minio/main.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import (
"github.com/minios/minios"
)
func main() {
server := minio.Server{}
server.Start()
}