summaryrefslogtreecommitdiff
path: root/cli/app/commands/biggan/live.py
blob: 38d5e451c1c426186daa5c5c40d87f8afc72dc94 (plain)
1
2
3
4
5
6
7
8
9
10
11
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()