9 lines
242 B
Python
9 lines
242 B
Python
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
# python_server/ 根目录(app/ 的上一级)
|
|
APP_ROOT = Path(__file__).resolve().parent.parent
|
|
OUTPUT_DIR = APP_ROOT / "outputs"
|
|
OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
|