mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-01-06 11:09:57 -08:00
6 lines
107 B
Python
6 lines
107 B
Python
"""CherryPy'd cherryd daemon runner."""
|
|
from cherrypy.daemon import run
|
|
|
|
|
|
__name__ == '__main__' and run()
|