lsgm/render.py
Marc Beninca 83f0ac2e88
All checks were successful
/ job (push) Successful in 5m57s
render
2025-06-07 23:19:59 +02:00

11 lines
258 B
Python
Executable file

#! /usr/bin/env python3
"""Dummy build."""
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", "lsgm.rwx.work")