added text on map

This commit is contained in:
Ayush Saini 2021-04-02 20:53:19 +05:30
parent 91af4a8027
commit bfb5dd8ec3
7 changed files with 91 additions and 4 deletions

View file

@ -1 +1,19 @@
# Released under the MIT License. See LICENSE for details.
# Released under the MIT License. See LICENSE for details.
settings={}
def get_setting():
global settings
if settings=={}:
f=open("setting.json","r")
dat=json.loads(f.read())
settings=dat
f.close()
return settings
def commit():
global settings
f=open("setting.json",'w')
json.dump(setting,f,indent=4)
f.close()