spcd/cd/__main__.py

9 lines
136 B
Python
Raw Normal View History

2024-04-26 21:10:58 +00:00
#! /usr/bin/env python3
2024-06-09 21:15:19 +00:00
"""Entry point to either bootstrap or command."""
2024-04-26 19:58:35 +00:00
import cd
2024-06-08 21:56:21 +00:00
if __name__ == "__main__":
2024-06-21 10:10:09 +00:00
cd.main(__file__)