forked from TrueCloudLab/frostfs-node
11 lines
190 B
Go
11 lines
190 B
Go
package objectstore
|
|
|
|
type ObjectStore struct{}
|
|
|
|
func New(opts ...Option) (*ObjectStore, error) {
|
|
cfg := defaultCfg()
|
|
for _, opt := range opts {
|
|
opt(cfg)
|
|
}
|
|
return &ObjectStore{}, nil
|
|
}
|