10 lines
179 B
Python
Executable file
10 lines
179 B
Python
Executable file
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import signal
|
|
from Client import *
|
|
|
|
if __name__ == "__main__":
|
|
c = Client()
|
|
#signal.signal(signal.SIGINT, c.shutdown)
|
|
#c.start()
|