mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-24 05:29:12 +08:00
10 lines
216 B
Python
10 lines
216 B
Python
#!/usr/bin/env python3
|
|
|
|
# Copyright (c) 2015 Ultimaker B.V.
|
|
# Cura is released under the terms of the AGPLv3 or higher.
|
|
|
|
from src.CuraApplication import CuraApplication
|
|
|
|
app = CuraApplication.getInstance()
|
|
app.run()
|