Initail commit of basic structure

This commit is contained in:
Arjen Hiemstra 2014-11-10 16:00:53 +01:00
commit 4e034fbbd0
2 changed files with 14 additions and 0 deletions

8
PrinterApplication.py Normal file
View 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
View file

@ -0,0 +1,6 @@
#!/usr/bin/env python2
from PrinterApplication import PrinterApplication
app = PrinterApplication()
app.run()