aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/main.go b/main.go
index ea477f4..31a9640 100644
--- a/main.go
+++ b/main.go
@@ -4,7 +4,7 @@ import (
"os"
"io"
"fmt"
- "golang.flu0r1ne.net/zfdiff/cmds"
+ "golang.flu0r1ne.net/zfdiff/cmd"
)
func printUsage(w io.Writer) {
@@ -35,11 +35,11 @@ func main() {
case "list":
cmd.List(subargs)
case "overwrite":
- //overwrite(subargs)
+ cmd.Overwrite(subargs)
case "cat":
- //cmd.Cat(subargs)
+ cmd.Cat(subargs)
case "diff":
- //diff(subargs)
+ cmd.Diff(subargs)
case "-h", "-help", "--help", "help":
printUsage(os.Stdout)
default: