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.
6 lines
67 B
Python
6 lines
67 B
Python
from deluge.ui.web.web import Web
|
|
|
|
|
|
def start():
|
|
Web().start()
|