Files
simplemind/examples/_context.py
T
2024-10-29 06:37:03 -04:00

11 lines
217 B
Python

import os
import sys
# Add the parent directory to the path so we can import the module.
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
import simplemind as sm
__all__ = ["sm"]