adds .local/share/millennium and easyeffects

This commit is contained in:
2026-08-06 18:23:36 +02:00
parent f92fb90275
commit 8dc466cbac
2581 changed files with 339035 additions and 0 deletions
@@ -0,0 +1,14 @@
"""
This file is used to bootup the websocket server without millennium so just from the terminal
"""
from .server import initialize_server, run_server, shutdown_server
if __name__ == "__main__":
initialize_server()
run_server()
try:
input("Press Enter to exit...")
except KeyboardInterrupt:
pass
shutdown_server()