mirror of
https://github.com/Syncplay/syncplay
synced 2024-12-17 04:14:47 +00:00
8 lines
241 B
Python
Executable File
8 lines
241 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
from syncplay.clientManager import SyncplayClientManager
|
|
from syncplay.utils import blackholeStdoutForFrozenWindow
|
|
if(__name__ == '__main__'):
|
|
blackholeStdoutForFrozenWindow()
|
|
SyncplayClientManager().run()
|
|
|