todo/build.py
2024-12-09 01:19:40 +01:00

11 lines
254 B
Python
Executable file

#! /usr/bin/env python3
"""Build web."""
from pathlib import Path
from rwx.fs import make_directory, write
if __name__ == "__main__":
out = Path(__file__).parent / "out" / "web"
make_directory(out)
write(out / "index.html", "to.rwx.work")