2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2016-11-16 19:23:32 -05:00
|
|
|
|
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"
|
|
|
|
|
2021-11-01 11:03:16 -04:00
|
|
|
// MUST be first import.
|
|
|
|
_ "github.com/minio/minio/internal/init"
|
|
|
|
|
2017-01-26 18:22:41 -05:00
|
|
|
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
|
|
|
}
|