mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
Rename more
This commit is contained in:
parent
80b7bc7ccc
commit
d6a0e0cc55
@ -1,10 +1,10 @@
|
|||||||
## Minio Server [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/minio/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
## Minio Server [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/minio/minio?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
|
||||||
|
|
||||||
Minio is a minimal object storage server written in Golang and licensed under [Apache license v2](./LICENSE). Minio is compatible with Amazon S3 APIs. [![Build Status](https://travis-ci.org/minio/minio.svg?branch=master)](https://travis-ci.org/minio/minio)
|
Minio is a minimal cloud storage server written in Golang and licensed under [Apache license v2](./LICENSE). Minio is compatible with Amazon S3 APIs. [![Build Status](https://travis-ci.org/minio/minio.svg?branch=master)](https://travis-ci.org/minio/minio)
|
||||||
|
|
||||||
## Minio Client
|
## Minio Client
|
||||||
|
|
||||||
[Minio Client (mc)](https://github.com/minio/mc#minio-client-mc-) provides a modern alternative to Unix commands like ``ls``, ``cat``, ``cp``, ``sync``, and ``diff``. It supports POSIX compatible filesystems and Amazon S3 compatible object storage systems. It is entirely written in Golang.
|
[Minio Client (mc)](https://github.com/minio/mc#minio-client-mc-) provides a modern alternative to Unix commands like ``ls``, ``cat``, ``cp``, ``sync``, and ``diff``. It supports POSIX compatible filesystems and Amazon S3 compatible cloud storage systems. It is entirely written in Golang.
|
||||||
|
|
||||||
## Amazon S3 Compatible Client Libraries
|
## Amazon S3 Compatible Client Libraries
|
||||||
- [Golang Library](https://github.com/minio/minio-go)
|
- [Golang Library](https://github.com/minio/minio-go)
|
||||||
|
2
doc.go
2
doc.go
@ -14,5 +14,5 @@
|
|||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// Minio - Object storage inspired by Amazon S3 and Facebook Haystack.
|
// Minio Cloud Storage
|
||||||
package main
|
package main
|
||||||
|
2
main.go
2
main.go
@ -35,7 +35,7 @@ var flags = []cli.Flag{
|
|||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
Name: "address",
|
Name: "address",
|
||||||
Value: ":9000",
|
Value: ":9000",
|
||||||
Usage: "ADDRESS:PORT for object storage access",
|
Usage: "ADDRESS:PORT for cloud storage access",
|
||||||
},
|
},
|
||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
Name: "address-mgmt",
|
Name: "address-mgmt",
|
||||||
|
@ -20,14 +20,14 @@ import "io"
|
|||||||
|
|
||||||
// Collection of Donut specification interfaces
|
// Collection of Donut specification interfaces
|
||||||
|
|
||||||
// Interface is a collection of object storage and management interface
|
// Interface is a collection of cloud storage and management interface
|
||||||
type Interface interface {
|
type Interface interface {
|
||||||
ObjectStorage
|
CloudStorage
|
||||||
Management
|
Management
|
||||||
}
|
}
|
||||||
|
|
||||||
// ObjectStorage is a donut object storage interface
|
// CloudStorage is a donut cloud storage interface
|
||||||
type ObjectStorage interface {
|
type CloudStorage interface {
|
||||||
// Storage service operations
|
// Storage service operations
|
||||||
GetBucketMetadata(bucket string, signature *Signature) (BucketMetadata, error)
|
GetBucketMetadata(bucket string, signature *Signature) (BucketMetadata, error)
|
||||||
SetBucketMetadata(bucket string, metadata map[string]string, signature *Signature) error
|
SetBucketMetadata(bucket string, metadata map[string]string, signature *Signature) error
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Mini Object Storage, (C) 2014 Minio, Inc.
|
* Minio Cloud Storage, (C) 2014 Minio, Inc.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -53,7 +53,7 @@ type ListObjectsResponse struct {
|
|||||||
|
|
||||||
// When response is truncated (the IsTruncated element value in the response
|
// When response is truncated (the IsTruncated element value in the response
|
||||||
// is true), you can use the key name in this field as marker in the subsequent
|
// is true), you can use the key name in this field as marker in the subsequent
|
||||||
// request to get next set of objects. Object storage lists objects in alphabetical
|
// request to get next set of objects. Server lists objects in alphabetical
|
||||||
// order Note: This element is returned only if you have delimiter request parameter
|
// order Note: This element is returned only if you have delimiter request parameter
|
||||||
// specified. If response does not include the NextMaker and it is truncated,
|
// specified. If response does not include the NextMaker and it is truncated,
|
||||||
// you can use the value of the last Key in the response as the marker in the
|
// you can use the value of the last Key in the response as the marker in the
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Minimal object storage library (C) 2015 Minio, Inc.
|
* Minio Cloud Storage, (C) 2014 Minio, Inc.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
Loading…
Reference in New Issue
Block a user