mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-07-23 17:34:32 +02:00
6 lines
75 B
Python
6 lines
75 B
Python
|
|
import click
|
||
|
|
|
||
|
|
|
||
|
|
@click.command()
|
||
|
|
def cli(*args):
|
||
|
|
click.echo(repr(args))
|