1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
dotfile-automator/project/sync/cli.py

10 lines
211 B
Python

import click
from project.utils import config, constants
@click.command('sync')
def cli():
if not config.has_basics():
print("You do not have all the basic requirements set.")
return 1