mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-03-12 04:35:40 -07: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()
|