mirror of
https://github.com/Ultimaker/Cura.git
synced 2026-01-22 13:17:00 -07:00
8 lines
213 B
Python
8 lines
213 B
Python
from Cura.Application import Application
|
|
|
|
class PrinterApplication(Application):
|
|
def __init__(self):
|
|
super(PrinterApplication, self).__init__()
|
|
|
|
def run(self):
|
|
print("Shoopdawoop")
|