mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-08 07:27:29 -06: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")
|