1
0
mirror of https://github.com/spl0k/supysonic.git synced 2024-09-19 19:01:03 +00:00
supysonic/bin/supysonic-cli

19 lines
456 B
Plaintext
Raw Normal View History

2014-10-22 16:15:23 +00:00
#!/usr/bin/env python
2013-09-05 15:17:25 +00:00
2014-03-02 17:31:32 +00:00
# This file is part of Supysonic.
# Supysonic is a Python implementation of the Subsonic server API.
#
2017-12-08 21:02:12 +00:00
# Copyright (C) 2017 Alban 'spl0k' Féron
2014-03-02 17:31:32 +00:00
#
2017-12-08 21:02:12 +00:00
# Distributed under terms of the GNU AGPLv3 license.
2014-03-02 17:31:32 +00:00
2019-06-16 14:02:50 +00:00
import warnings
from supysonic.cli import main
2013-09-07 10:58:28 +00:00
2013-09-05 15:17:25 +00:00
if __name__ == "__main__":
2019-06-16 14:02:50 +00:00
warnings.warn(
"You're using an old version of the `supysonic-cli` script. "
"It should have been replaced on install."
)
main()