summaryrefslogtreecommitdiffstats
path: root/pytzdata/commands/app.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-02-07 07:34:39 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-02-07 07:50:21 +0000
commitfe534d5229de5e83dccdfa3e4ba3c1b29bd38a71 (patch)
treeb6c5cd613e258116b1f732732c78f87b3d5f6e50 /pytzdata/commands/app.py
parentInitial commit. (diff)
downloadpytzdata-fe534d5229de5e83dccdfa3e4ba3c1b29bd38a71.tar.xz
pytzdata-fe534d5229de5e83dccdfa3e4ba3c1b29bd38a71.zip
Adding upstream version 2020.1+dfsg.upstream/2010.1+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'pytzdata/commands/app.py')
-rw-r--r--pytzdata/commands/app.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/pytzdata/commands/app.py b/pytzdata/commands/app.py
new file mode 100644
index 0000000..0d09a43
--- /dev/null
+++ b/pytzdata/commands/app.py
@@ -0,0 +1,15 @@
+# -*- coding: utf-8 -*-
+
+from cleo import Application
+
+from .make import MakeCommand
+from .zones import ZonesCommand
+
+app = Application('pytzdata')
+
+app.add(MakeCommand())
+app.add(ZonesCommand())
+
+
+if __name__ == '__main__':
+ app.run()