deluge/deluge/ui/web/__init__.py
Jamie Lennox aa82efd4f1 [#1974] [UI] Decouple UI selection from core.
Add entry points into setup for each of the UIs and then use this
information to determine which client UI to run.

This ensures that custom UIs may be written and run without
the need to modifify deluge source code.
2016-04-17 13:51:40 +02:00

6 lines
67 B
Python

from deluge.ui.web.web import Web
def start():
Web().start()