diff options
Diffstat (limited to 'backend/main.py')
| -rw-r--r-- | backend/main.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backend/main.py b/backend/main.py index 99e6c618..52e0ce06 100644 --- a/backend/main.py +++ b/backend/main.py @@ -27,6 +27,7 @@ from browser import PluginBrowser from injector import inject_to_tab, tab_has_global_var from loader import Loader from utilities import Utilities +from updater import Updater logger = getLogger("Main") @@ -47,6 +48,7 @@ class PluginManager: self.plugin_loader = Loader(self.web_app, CONFIG["plugin_path"], self.loop, CONFIG["live_reload"]) self.plugin_browser = PluginBrowser(CONFIG["plugin_path"], self.web_app) self.utilities = Utilities(self) + self.updater = Updater(self) jinja_setup(self.web_app) self.web_app.on_startup.append(self.inject_javascript) |
