mirror of
https://github.com/blw1138/Zordon.git
synced 2025-12-17 08:48:13 +00:00
* Zeroconf logging improvements * Ignore RuntimeErrors in background threads - Prevents issues during shutdown * Migrate start up code from api_server.py to init.py * Add error handlers to the API server to handle detached instances * Integrate RenderQueue eval loop into RenderQueue object * Silently catch RuntimeErrors on evaluate_queue * Stop background queue updates in prepare_for_shutdown
6 lines
98 B
Python
Executable File
6 lines
98 B
Python
Executable File
#!/usr/bin/env python3
|
|
from init import run
|
|
|
|
if __name__ == '__main__':
|
|
run(server_only=True)
|