help/render.py
Marc Beninca 27d2a6d844
All checks were successful
/ job (push) Successful in 6m43s
render
2025-06-08 11:10:17 +02:00

11 lines
191 B
Python
Executable file

#! /usr/bin/env -S python3 -B
import sys
from pathlib import Path
from rwx.prj.sphinx import SphinxProject
if __name__ == "__main__":
sys.exit(SphinxProject(Path(__file__)).build())