mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-07-21 21:01:24 +08:00
9 lines
230 B
Python
9 lines
230 B
Python
import os
|
|
import sys
|
|
from modules.paths_internal import models_path, script_path, data_path, extensions_dir, extensions_builtin_dir, cwd # noqa: F401
|
|
|
|
|
|
sys.path.insert(0, script_path)
|
|
|
|
sd_path = os.path.dirname(__file__)
|