# -*- coding:utf-8 -*-
"""
@author: yq
@time: 2022/10/24
@desc: 
"""
import os


class BaseConfig:
    image_path= "./image"

    os.makedirs(image_path, exist_ok=True)