mirror of
https://github.com/Physton/sd-webui-prompt-all-in-one.git
synced 2026-01-26 19:29:56 +00:00
9 lines
293 B
Python
9 lines
293 B
Python
import os
|
|
import sys
|
|
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
|
|
|
|
from scripts.physton_prompt.get_version import get_git_commit_version, get_git_remote_versions, get_latest_version
|
|
|
|
print(get_git_remote_versions())
|
|
print(get_git_commit_version())
|
|
print(get_latest_version()) |