mirror of
https://github.com/rembo10/headphones.git
synced 2026-01-12 16:28:22 -05:00
Mostly just updating libraries, removing string encoding/decoding, fixing some edge cases. No new functionality was added in this commit.
6 lines
107 B
Python
Executable File
6 lines
107 B
Python
Executable File
"""CherryPy'd cherryd daemon runner."""
|
|
from cherrypy.daemon import run
|
|
|
|
|
|
__name__ == '__main__' and run()
|