2014-10-22 16:15:23 +00:00
|
|
|
#!/usr/bin/env python
|
2014-06-13 17:04:00 +00:00
|
|
|
# coding: utf-8
|
|
|
|
|
|
|
|
# This file is part of Supysonic.
|
|
|
|
# Supysonic is a Python implementation of the Subsonic server API.
|
|
|
|
#
|
2019-03-31 12:43:32 +00:00
|
|
|
# Copyright (C) 2014-2019 Alban 'spl0k' Féron
|
2014-06-13 17:04:00 +00:00
|
|
|
#
|
2019-03-31 12:43:32 +00:00
|
|
|
# Distributed under terms of the GNU AGPLv3 license.
|
|
|
|
|
2019-06-10 14:16:24 +00:00
|
|
|
import warnings
|
|
|
|
from supysonic.daemon import main
|
2019-03-31 12:43:32 +00:00
|
|
|
|
2017-10-08 14:22:04 +00:00
|
|
|
if __name__ == "__main__":
|
2019-06-10 14:16:24 +00:00
|
|
|
warnings.warn(
|
2019-06-16 13:29:52 +00:00
|
|
|
"You're using an old version of the `supysonic-watcher` script.\nNo worries "
|
|
|
|
"though, it will still work (for some time), but you should call `supysonic-daemon` instead."
|
|
|
|
)
|
2019-06-10 14:16:24 +00:00
|
|
|
main()
|