mirror of
https://github.com/caelestia-dots/cli.git
synced 2026-06-05 23:09:27 -05:00
a4f5138d41
Also create utility script for testing
14 lines
223 B
Python
14 lines
223 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()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|