Files
ServerWind/settings.py
T

6 lines
110 B
Python
Raw Normal View History

2026-05-17 14:42:27 +08:00
import os
from pathlib import Path
2026-06-07 11:59:56 +08:00
CONFIG_DIR = Path.cwd() / 'config'
2026-05-17 14:42:27 +08:00
os.makedirs(CONFIG_DIR, exist_ok=True)