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/>.
|
2017-03-16 15:21:58 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
2021-06-14 15:53:49 -04:00
|
|
|
import "github.com/minio/madmin-go"
|
2017-03-16 15:21:58 -04:00
|
|
|
|
2022-02-27 17:54:37 -05:00
|
|
|
// Gateway name backends
|
2020-08-26 11:52:46 -04:00
|
|
|
const (
|
2022-02-27 17:54:37 -05:00
|
|
|
NASBackendGateway = "nas"
|
|
|
|
S3BackendGateway = "s3"
|
2020-08-26 11:52:46 -04:00
|
|
|
)
|
2017-12-05 20:58:09 -05:00
|
|
|
|
|
|
|
// Gateway represents a gateway backend.
|
|
|
|
type Gateway interface {
|
|
|
|
// Name returns the unique name of the gateway.
|
|
|
|
Name() string
|
|
|
|
|
2018-02-09 18:19:30 -05:00
|
|
|
// NewGatewayLayer returns a new ObjectLayer.
|
2021-06-14 15:53:49 -04:00
|
|
|
NewGatewayLayer(creds madmin.Credentials) (ObjectLayer, error)
|
2017-12-05 20:58:09 -05:00
|
|
|
}
|