mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 06:57:28 -06:00
14 lines
333 B
Python
14 lines
333 B
Python
# Copyright (c) 2015 Ultimaker B.V.
|
|
# Cura is released under the terms of the AGPLv3 or higher.
|
|
|
|
from UM.i18n import i18nCatalog
|
|
from . import FirmwareUpdateChecker
|
|
|
|
i18n_catalog = i18nCatalog("cura")
|
|
|
|
def getMetaData():
|
|
return {
|
|
}
|
|
|
|
def register(app):
|
|
return { "extension": FirmwareUpdateChecker.FirmwareUpdateChecker()}
|