mirror of
https://github.com/onestardao/WFGY.git
synced 2026-04-28 03:29:51 +00:00
9 lines
210 B
Python
9 lines
210 B
Python
# wfgy_sdk/initializer.py
|
|
|
|
import os
|
|
from .utils import DATA_DIR
|
|
|
|
def initialize():
|
|
print("No download required.")
|
|
print(f"All demo data is already included in the repository at: {DATA_DIR}")
|
|
|