Onionr/onionr/etc/cleanup/__init__.py
2019-07-31 00:10:28 -05:00

10 lines
249 B
Python

import os, filepaths
def delete_run_files():
try:
os.remove(filepaths.public_API_host_file)
except FileNotFoundError:
pass
try:
os.remove(filepaths.private_API_host_file)
except FileNotFoundError:
pass