Changeset - 5a2b6c5c3858
[Not reviewed]
version_5
0 1 1
Dennis Fink - 9 years ago 2015-10-14 22:08:00
dennis.fink@c3l.lu
Added config subcommand
2 files changed with 6 insertions and 0 deletions:
0 comments (0 inline, 0 general)
ennstatus/cli/__init__.py
Show inline comments
 
@@ -15,5 +15,8 @@ def cli(ctx, path):
 
    ctx.obj['data_dir'] = path / 'data'
 

	
 

	
 
from .commands import config
 
cli.add_command(config, 'config')
 

	
 
if __name__ == '__main__':
 
    cli()
ennstatus/cli/commands/__init__.py
Show inline comments
 
new file 100644
 
from .config import config
 

	
 
__all__ = ['config']
0 comments (0 inline, 0 general)