forked from Ghostkeeper/SettingsGuide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path__init__.py
13 lines (10 loc) · 836 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
#Copyright (C) 2018 Ultimaker B.V.
#Copyright (C) 2019 Ghostkeeper
#This plug-in is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
#This plug-in is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for details.
#You should have received a copy of the GNU Affero General Public License along with this plug-in. If not, see <https://gnu.org/licenses/>.
from . import CuraSettingsGuide
def getMetaData():
return {}
def register(app):
return {"extension": CuraSettingsGuide.CuraSettingsGuide()}