mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-02 00:34:26 +08:00
9 lines
206 B
Python
9 lines
206 B
Python
from Cura.Application import Application
|
|
|
|
class PrinterApplication(Application):
|
|
def __init__(self):
|
|
super(Application, self).__init__()
|
|
|
|
def run(self):
|
|
print("Shoopdawoop")
|