aboutsummaryrefslogtreecommitdiffstats
path: root/storage/filesystem/config.go
diff options
context:
space:
mode:
Diffstat (limited to 'storage/filesystem/config.go')
-rw-r--r--storage/filesystem/config.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/storage/filesystem/config.go b/storage/filesystem/config.go
index c91ba58..1cff05a 100644
--- a/storage/filesystem/config.go
+++ b/storage/filesystem/config.go
@@ -44,11 +44,12 @@ func (c *ConfigStorage) Remotes() ([]*config.RemoteConfig, error) {
}
func (c *ConfigStorage) SetRemote(r *config.RemoteConfig) error {
- return fmt.Errorf("not implemented yet")
+ return nil
+ return fmt.Errorf("set remote - not implemented yet")
}
func (c *ConfigStorage) DeleteRemote(name string) error {
- return fmt.Errorf("not implemented yet")
+ return fmt.Errorf("delete - remote not implemented yet")
}
func (c *ConfigStorage) read() (*ConfigFile, error) {