Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/init.py
2021-08-23 20:44:31 +08:00

18 lines
423 B
Python

import os
import shutil
from config import Config
from database import BotDBUtil
def init_bot():
cache_path = os.path.abspath('./cache/')
if os.path.exists(cache_path):
shutil.rmtree(cache_path)
os.mkdir(cache_path)
else:
os.mkdir(cache_path)
base_superuser = Config('base_superuser')
if base_superuser:
BotDBUtil.SenderInfo(base_superuser).edit('isSuperUser', True)