main.py (288B)
1 """Entry point for generating VitePress docs from list.txt. 2 3 Replaces the old standalone md.py — generation logic now lives in 4 utils/bsc_md/. Run this the same way md.py used to be run: 5 6 python main.py 7 """ 8 from utils.bsc_md.pipeline import run 9 10 if __name__ == "__main__": 11 run()