NextERP-scripts/cli/git.py
2025-04-05 12:25:58 +07:00

12 lines
268 B
Python

# cli/module.py
import tqdm
from services.git.handler import GitHandler
import lib.color_log as color_log
def setup_cli(subparsers):
pass
def git(args):
git_handler = GitHandler(args.repo_url, args.local_path, args.branch)
git_handler.pull_updates()