1
Fork 0
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/config/cli.py

9 lines
137 B
Python
Raw Normal View History

import click
2015-12-03 18:07:08 +00:00
from project.utils import config
2015-12-02 22:39:40 +00:00
2015-12-02 22:37:36 +00:00
@click.command('config')
@click.argument('key')
def cli(key):
2015-12-03 18:07:08 +00:00
print(config.get(key))