moved server to own folder
This commit is contained in:
12
server/setup.py
Normal file
12
server/setup.py
Normal 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()
|
Reference in New Issue
Block a user