16 lines
316 B
Python
16 lines
316 B
Python
from .cli import CLI
|
|
from .commands import setup
|
|
|
|
def help_text():
|
|
return [
|
|
"%bold%%cyan%chipnut CLI: tiny shell, big squirrel energy :3%reset%",
|
|
]
|
|
|
|
def main() -> int:
|
|
cli = CLI(help_callback=help_text)
|
|
setup(cli)
|
|
return cli.run()
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|