-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy path__init__.py
More file actions
24 lines (18 loc) · 739 Bytes
/
__init__.py
File metadata and controls
24 lines (18 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Copyright (c) 2020 Aldo Hoeben / fieldOfView & Shane Bumpurs
# RepetierIntegration is released under the terms of the AGPLv3 or higher.
import os, json
from . import RepetierOutputDevicePlugin
from . import DiscoverRepetierAction
from . import NetworkMJPGImage
from UM.Version import Version
from UM.Application import Application
from UM.Logger import Logger
from PyQt6.QtQml import qmlRegisterType
def getMetaData():
return {}
def register(app):
qmlRegisterType(NetworkMJPGImage.NetworkMJPGImage, "RepetierIntegration", 1, 0, "NetworkMJPGImage")
return {
"output_device": RepetierOutputDevicePlugin.RepetierOutputDevicePlugin(),
"machine_action": DiscoverRepetierAction.DiscoverRepetierAction()
}