aboutsummaryrefslogtreecommitdiff
path: root/bcst/args.py
diff options
context:
space:
mode:
Diffstat (limited to 'bcst/args.py')
-rw-r--r--bcst/args.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/bcst/args.py b/bcst/args.py
deleted file mode 100644
index 993c9ed..0000000
--- a/bcst/args.py
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/usr/bin/env python
-
-import argparse
-
-args_parser = argparse.ArgumentParser()
-args_parser.add_argument("resource", nargs="?", help="A JSON resource file.")
-args_parser.add_argument("destination", nargs="?",help="Start page folder name.")
-args_parser.add_argument("-l","--list", dest="list",action="store_true", help="List available themes.")
-args_parser.add_argument("-e","--extract", metavar="theme",dest="extract", help="Extract theme resource.")
-args = args_parser.parse_args()
-