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