summaryrefslogtreecommitdiff
path: root/cli/app/commands
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2020-01-08 20:17:30 +0100
committerJules Laplace <julescarbon@gmail.com>2020-01-08 20:17:30 +0100
commitb9f515173f480a0468fc54d05bf134ebb15b0328 (patch)
treed473b3946ba20f95b31305e4c9c04ca17dba92df /cli/app/commands
parent76d4a9ed2e209cea7d3524e1b537faaabc4ca1c6 (diff)
moving in the live stuff
Diffstat (limited to 'cli/app/commands')
-rw-r--r--cli/app/commands/biggan/live.py12
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()