server/server/main.py
Torma Kristóf 4bd161de54
All checks were successful
continuous-integration/drone/push Build is passing
create init function
2021-04-25 17:55:05 +02:00

8 lines
148 B
Python

#!/usr/bin/env python3
from server import Server
if __name__ == '__main__':
server = Server()
server.initServer()
server.startServer()