Files

32 lines
962 B
Go
Raw Permalink Normal View History

// Copyright (c) 2015-2021 Hanzo AI, Inc.
2021-05-10 12:56:26 -07:00
//
// This file is part of Hanzo S3 stack
2021-05-10 12:56:26 -07:00
//
// 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/>.
package main // import "github.com/minio/mc"
2015-01-15 00:24:04 -08:00
2019-06-03 11:22:31 -07:00
import (
"os"
mc "github.com/minio/mc/cmd"
2024-05-23 00:59:47 -07:00
"github.com/minio/pkg/v3/console"
2019-06-03 11:22:31 -07:00
)
2015-01-15 18:00:19 -08:00
2015-07-24 12:42:22 -07:00
func main() {
2022-09-28 19:28:02 +01:00
if e := mc.Main(os.Args); e != nil {
console.Fatalln(e)
}
2015-01-15 00:24:04 -08:00
}