19 lines
396 B
Python
19 lines
396 B
Python
#!/usr/bin/env python3
|
|
from __future__ import annotations
|
|
|
|
import runpy
|
|
from pathlib import Path
|
|
|
|
|
|
SCRIPT_DIR = Path(__file__).resolve().parent
|
|
IMPLEMENTATION = SCRIPT_DIR / "generate_core_resources_canonical_pages.py"
|
|
|
|
|
|
def main() -> int:
|
|
module_globals = runpy.run_path(str(IMPLEMENTATION))
|
|
return int(module_globals["main"]())
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|