stub namespaces now that i realize file trees arent namespaces

This commit is contained in:
bel
2021-08-05 21:51:50 -06:00
parent 9cda5ad071
commit f647664b54
6 changed files with 63 additions and 15 deletions

View File

@@ -2,6 +2,7 @@ package rclone
import (
"bytes"
"errors"
"io"
"io/ioutil"
"local/storage/resolve"
@@ -110,6 +111,10 @@ func (rc *RClone) Close() error {
return nil
}
func (rc *RClone) Namespaces() ([][]string, error) {
return nil, errors.New("not impl")
}
func (rc *RClone) List(ns []string, limits ...string) ([]string, error) {
namespace := rc.ns
if len(ns) > 0 {