Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'cura_app.py')
-rw-r--r--cura_app.py9
1 files changed, 9 insertions, 0 deletions
diff --git a/cura_app.py b/cura_app.py
new file mode 100644
index 0000000000..cfe99284b3
--- /dev/null
+++ b/cura_app.py
@@ -0,0 +1,9 @@
+#!/usr/bin/env python3
+
+# Copyright (c) 2015 Ultimaker B.V.
+# Cura is released under the terms of the AGPLv3 or higher.
+
+import cura.CuraApplication
+
+app = cura.CuraApplication.CuraApplication.getInstance()
+app.run()