23 lines
327 B
Python
Executable File
23 lines
327 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import random
|
|
import socket
|
|
import responder
|
|
from app_instance import api
|
|
from routes import *
|
|
import wiz_game
|
|
|
|
|
|
def main():
|
|
print("main started")
|
|
|
|
random.seed()
|
|
wiz_game.the_game.start_game()
|
|
|
|
api.run(port=19203, address="127.0.0.1")
|
|
exit(0)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|