12 lines
268 B
Python
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()
|