2021-04-18 12:41:13 -07: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 16:23:32 -08:00
|
|
|
|
2016-11-04 18:25:30 -07:00
|
|
|
package main // import "github.com/minio/minio"
|
2015-01-14 11:29:04 -08:00
|
|
|
|
2017-01-27 00:22:41 +01:00
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
|
2021-11-01 08:03:16 -07:00
|
|
|
// MUST be first import.
|
|
|
|
_ "github.com/minio/minio/internal/init"
|
|
|
|
|
2017-01-27 00:22:41 +01:00
|
|
|
minio "github.com/minio/minio/cmd"
|
|
|
|
)
|
2015-12-06 14:31:20 -08:00
|
|
|
|
2015-08-20 13:05:47 -07:00
|
|
|
func main() {
|
2017-03-07 09:05:26 +05:30
|
|
|
minio.Main(os.Args)
|
2015-01-14 11:29:04 -08:00
|
|
|
}
|