From 2e0d3ed7801b056e63379881c7b764e01979f800 Mon Sep 17 00:00:00 2001 From: Jan Koppe Date: Wed, 15 Apr 2020 21:44:56 +0200 Subject: [PATCH] flake8; readme stub --- README.md | 4 ++++ main.py | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..f724222 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +[![Docker Repository on Quay](https://quay.io/repository/cwtv/concierge/status "Docker Repository on Quay")](https://quay.io/repository/cwtv/portier) +[![Travis Pipelines](https://api.travis-ci.org/chaoswest-tv/concierge.svg?branch=master)](https://travis-ci.org/github/chaoswest-tv/concierge) + +# Concierge diff --git a/main.py b/main.py index 0509915..5ac7977 100644 --- a/main.py +++ b/main.py @@ -6,10 +6,12 @@ app = Celery('tasks', broker='redis://localhost') print(server.supervisor.getState()) + @app.task def start_restream(name): print(name) + @app.task def stop_restream(name): print(name)