Alex Vanin
20de74a505
Due to source code relocation from GitHub. Signed-off-by: Alex Vanin <a.vanin@yadro.com>
19 lines
389 B
Go
19 lines
389 B
Go
package fstree
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/util"
|
|
)
|
|
|
|
// Open implements common.Storage.
|
|
func (t *FSTree) Open(ro bool) error {
|
|
t.readOnly = ro
|
|
return nil
|
|
}
|
|
|
|
// Init implements common.Storage.
|
|
func (t *FSTree) Init() error {
|
|
return util.MkdirAllX(t.RootPath, t.Permissions)
|
|
}
|
|
|
|
// Close implements common.Storage.
|
|
func (*FSTree) Close() error { return nil }
|