summaryrefslogtreecommitdiffstats
path: root/main.py
diff options
context:
space:
mode:
authorVG <vg@devys.org>2016-12-09 11:25:11 +0100
committerVG <vg@devys.org>2016-12-09 11:25:11 +0100
commit7baec10b5c7e454276fafee86fdf91409b242715 (patch)
tree05ed33ffda659796778a4815ea7f1116421f7dbd /main.py
parent96cd0418f870ea0c2fc9870761dd1f19d7277e67 (diff)
downloadcatcad-7baec10b5c7e454276fafee86fdf91409b242715.tar.gz
catcad-7baec10b5c7e454276fafee86fdf91409b242715.tar.bz2
catcad-7baec10b5c7e454276fafee86fdf91409b242715.zip
organize files in a package
Diffstat (limited to 'main.py')
-rwxr-xr-xmain.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/main.py b/main.py
new file mode 100755
index 0000000..3903c79
--- /dev/null
+++ b/main.py
@@ -0,0 +1,9 @@
+#!/usr/bin/python3
+# SPDX-License-Identifier: MIT
+
+
+from cad import assembly
+
+
+if __name__ == '__main__':
+ assembly.main()