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