base_config.py 169 B

12345678910111213
  1. # -*- coding:utf-8 -*-
  2. """
  3. @author: yq
  4. @time: 2022/10/24
  5. @desc:
  6. """
  7. import os
  8. class BaseConfig:
  9. image_path= "./image"
  10. os.makedirs(image_path, exist_ok=True)