diff options
Diffstat (limited to 'cli/app/commands/biggan')
| -rw-r--r-- | cli/app/commands/biggan/live.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/cli/app/commands/biggan/live.py b/cli/app/commands/biggan/live.py new file mode 100644 index 0000000..38d5e45 --- /dev/null +++ b/cli/app/commands/biggan/live.py @@ -0,0 +1,12 @@ +import click + +@click.command('') +@click.pass_context +def cli(ctx): + """ + Run the BigGAN live + """ + from app.search.live import Listener + + listener = Listener() + listener.connect() |
