blob: e93d0056fe1250915fdaa6b92a1e04a19425bb9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package s3api
import (
"context"
"github.com/chrislusf/seaweedfs/weed/pb/s3_pb"
)
func (s3a *S3ApiServer) Configure(ctx context.Context, request *s3_pb.S3ConfigureRequest) (*s3_pb.S3ConfigureResponse, error) {
if err := s3a.iam.LoadS3ApiConfigurationFromBytes(request.S3ConfigurationFileContent); err != nil {
return nil, err
}
return &s3_pb.S3ConfigureResponse{}, nil
}
|