22 lines
455 B
Python
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()
|