6 lines
133 B
Python
6 lines
133 B
Python
from pathlib import Path
|
|
import os
|
|
|
|
ROOT_SNAPSHOT_PATH = Path(__file__).parent
|
|
ABIS_FOLDER = "%s/abis" % (os.path.dirname(__file__))
|