from pathlib import Path

from build_technical_docx import build_docx


ROOT = Path(__file__).resolve().parents[1]


if __name__ == "__main__":
    build_docx(ROOT / "docs" / "USER_GUIDE.md", ROOT / "docs" / "USER_GUIDE.docx")
