Guillaume RYCKELYNCK c6c2ee9c04 first commit
2024-06-22 22:00:42 +02:00

22 lines
355 B
Python

import click
@click.command(name='test')
@click.pass_obj
def run(app):
"""
> sdi-checker test
"""
on_test(app)
def on_test(app):
"""
Function for test
"""
app.echo('-' * 80)
app.echo('TEST')
app.echo('Config file: ' + app.config_file or 'no config file')
app.echo('Hello World!')
app.echo('-' * 80)