moved server to own folder

This commit is contained in:
Untriex Programming
2021-03-17 08:12:52 +01:00
parent f53ed7653f
commit deaf217370
13 changed files with 126 additions and 1 deletions

12
server/setup.py Normal file
View File

@@ -0,0 +1,12 @@
import tkinter
import json
height = 750
width = 1200
with open("settings.json", "r") as file:
settings = json.load(file)
with open("settings.json", "r") as file:
filesystem = json.load(file)
canvas = tkinter.Canvas(height=height, width=width)
canvas.pack()
canvas.mainloop()