aboutsummaryrefslogtreecommitdiffstats
path: root/dec
diff options
context:
space:
mode:
Diffstat (limited to 'dec')
-rw-r--r--dec/dec.go19
1 files changed, 0 insertions, 19 deletions
diff --git a/dec/dec.go b/dec/dec.go
deleted file mode 100644
index 2414bfb..0000000
--- a/dec/dec.go
+++ /dev/null
@@ -1,19 +0,0 @@
-package main
-
-import (
- "flag"
- "fmt"
- "os"
-
- "roseh.moe/cmd/sym/internal/sym"
-)
-
-func main() {
- o := sym.DefaultDecryptOptions
- o.RegisterFlags(flag.CommandLine)
- flag.Parse()
- if err := o.Run(flag.Args()...); err != nil {
- fmt.Fprintln(os.Stderr, err)
- os.Exit(1)
- }
-}