2019-09-08 19:44:15 -04:00
|
|
|
// +build go1.13
|
2019-04-02 21:28:39 -04:00
|
|
|
|
2016-09-01 06:50:31 -04:00
|
|
|
/*
|
2019-04-09 14:39:42 -04:00
|
|
|
* MinIO Cloud Storage, (C) 2016, 2017, 2018 MinIO, Inc.
|
2016-09-01 06:50:31 -04:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2016-11-16 19:23:32 -05:00
|
|
|
/*
|
|
|
|
* Below main package has canonical imports for 'go get' and 'go build'
|
|
|
|
* to work with all other clones of github.com/minio/minio repository. For
|
|
|
|
* more information refer https://golang.org/doc/go1.4#canonicalimports
|
|
|
|
*/
|
|
|
|
|
2016-11-04 21:25:30 -04:00
|
|
|
package main // import "github.com/minio/minio"
|
2015-01-14 14:29:04 -05:00
|
|
|
|
2017-01-26 18:22:41 -05:00
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
|
|
|
minio "github.com/minio/minio/cmd"
|
2017-12-05 20:58:09 -05:00
|
|
|
|
|
|
|
// Import gateway
|
|
|
|
_ "github.com/minio/minio/cmd/gateway"
|
2017-01-26 18:22:41 -05:00
|
|
|
)
|
2015-12-06 17:31:20 -05:00
|
|
|
|
2015-08-20 16:05:47 -04:00
|
|
|
func main() {
|
2017-03-06 22:35:26 -05:00
|
|
|
minio.Main(os.Args)
|
2015-01-14 14:29:04 -05:00
|
|
|
}
|