forked from Shinonome/caelestia-cli
0ccf16d425
commit 7c47604c45e293a29ca31f01e140d621194c0aa6 Author: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat Jun 14 23:02:06 2025 +1000 dev: run without installing
10 lines
183 B
Python
10 lines
183 B
Python
from caelestia.parser import parse_args
|
|
|
|
|
|
def main() -> None:
|
|
parser, args = parse_args()
|
|
if "cls" in args:
|
|
args.cls(args).run()
|
|
else:
|
|
parser.print_help()
|