mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-15 08:35:57 +08:00
Initail commit of basic structure
This commit is contained in:
commit
4e034fbbd0
8
PrinterApplication.py
Normal file
8
PrinterApplication.py
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
from Cura.Application import Application
|
||||||
|
|
||||||
|
class PrinterApplication(Application):
|
||||||
|
def __init__(self):
|
||||||
|
super(Application, self).__init__()
|
||||||
|
|
||||||
|
def run(self):
|
||||||
|
print("Shoopdawoop")
|
6
printer.py
Executable file
6
printer.py
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/env python2
|
||||||
|
|
||||||
|
from PrinterApplication import PrinterApplication
|
||||||
|
|
||||||
|
app = PrinterApplication()
|
||||||
|
app.run()
|
Loading…
x
Reference in New Issue
Block a user