11 lines
187 B
Python
11 lines
187 B
Python
from pathlib import Path
|
|
|
|
|
|
PROJECT_ROOT = Path(__file__).resolve().parents[1]
|
|
|
|
|
|
def main() -> None:
|
|
print("WEHAGO_DB project is ready.")
|
|
print(f"Project folder: {PROJECT_ROOT}")
|
|
|