#!/usr/bin/env python3
import sys
from lawrisk.services import licensing_repo
print(f"Module file: {licensing_repo.__file__}")
print(f"Python path:")
for path in sys.path:
print(f" - {path}")