Clover/main.py
Jarian Cottingham 7e8d31af6e Clover created
2026-01-13 00:07:41 -06:00

22 lines
455 B
Python

#!/usr/bin/env python3
"""
Clover - A CLI tool for working with AI models to build and manage projects.
"""
import sys
import os
# Add the current directory to Python path
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from cli.parser import parse_args
from cli.commands import handle_command
def main():
"""Main entry point for Clover CLI"""
args = parse_args()
handle_command(args)
if __name__ == "__main__":
main()