Stub in the commands

This commit is contained in:
sm
2018-02-28 20:00:25 -08:00
parent 8a70658b3f
commit 92b937936e
2 changed files with 54 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
package remote
import (
"errors"
"io"
)
// Add appends the provided uri to the list of configured remotes.
func Add(root string, uri []string) error {
return errors.New("NYI")
}
// Add removes the given uri from the list of configured remotes.
func Remove(root string, uri []string) error {
return errors.New("NYI")
}
// List prints all configured remotes to w.
func List(root string, w io.Writer) error {
return errors.New("NYI")
}