Create initial tcp server

This commit is contained in:
Sebastian Kramer
2021-08-12 10:21:20 +02:00
parent 7dca623b42
commit a0d4a1e0d3
2 changed files with 61 additions and 0 deletions

10
main.py Normal file
View File

@@ -0,0 +1,10 @@
from tcp.TCPServer import TCPServer
def main():
server = TCPServer()
server.run()
if __name__ == "__main__":
main()