10 righe
131 B
Python
10 righe
131 B
Python
from tcp.TCPServer import TCPServer
|
|
|
|
|
|
def main():
|
|
server = TCPServer()
|
|
server.run()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main() |