19 lines
511 B
Python
19 lines
511 B
Python
|
from src.args import args
|
||
|
import src.api as api
|
||
|
import os
|
||
|
|
||
|
print("Check storage")
|
||
|
if not os.path.isdir(args.storage):
|
||
|
print("Create storage")
|
||
|
os.makedirs(args.storage, exist_ok=True)
|
||
|
|
||
|
|
||
|
print("Check secure origin...")
|
||
|
if not os.path.isfile(args.secure_origin_path):
|
||
|
origin = api.get_secure_origin()
|
||
|
with open(args.secure_origin_path, "w") as f:
|
||
|
f.write(origin)
|
||
|
|
||
|
with open(args.secure_origin_path, "r") as f:
|
||
|
args.secure_origin = f.read()
|
||
|
print(f"Secure origin = {args.secure_origin}")
|