aboutsummaryrefslogtreecommitdiff
path: root/cmds/list.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmds/list.go')
-rw-r--r--cmds/list.go21
1 files changed, 0 insertions, 21 deletions
diff --git a/cmds/list.go b/cmds/list.go
deleted file mode 100644
index 14fa53d..0000000
--- a/cmds/list.go
+++ /dev/null
@@ -1,21 +0,0 @@
-package cmd
-
-import (
- "flag"
- "fmt"
-)
-
-func List(params []string) {
- flags := flag.NewFlagSet("list", flag.ExitOnError)
-
- var withPaths bool
-
- const WITH_PATHS_HELP = "print paths to the provided reference within the snapshot"
-
- flags.BoolVar(&withPaths, "paths", false, WITH_PATHS_HELP);
- flags.BoolVar(&withPaths, "p", false, WITH_PATHS_HELP);
-
- flags.Parse(params);
-
- fmt.Printf("Your flag is: %t", withPaths);
-}