Archived
14 lines
237 B
Python
14 lines
237 B
Python
#!/usr/bin/env python3
|
|
# -- coding:utf-8 --
|
|
# @Author: markushammered@gmail.com
|
|
# @Development Tool: PyCharm
|
|
# @Create Time: 2022/2/17
|
|
# @File Name: __init__.py
|
|
|
|
|
|
import os
|
|
|
|
if not os.path.exists('./bin/log'):
|
|
os.mkdir('./bin/log')
|
|
|