From 2bc771d77181b750c895630412f476de98ab2ae9 Mon Sep 17 00:00:00 2001 From: John-Mark Gurney Date: Fri, 7 Feb 2020 16:46:14 -0800 Subject: [PATCH] get ready for running it as a command, for doing things like generating hashes, etc... --- casimport/__main__.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 casimport/__main__.py diff --git a/casimport/__main__.py b/casimport/__main__.py new file mode 100644 index 0000000..6eaa5aa --- /dev/null +++ b/casimport/__main__.py @@ -0,0 +1,4 @@ +from . import main + +if __name__ == '__main__': + main()