From 4024ed5b2a0cf92f47f3b1dc498817fc87e805e4 Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Wed, 30 Sep 2020 08:50:54 +0200 Subject: [PATCH] Add a comment, fix linting --- stream/multicast/muticast.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/stream/multicast/muticast.go b/stream/multicast/muticast.go index 1502d70..5b1d96c 100644 --- a/stream/multicast/muticast.go +++ b/stream/multicast/muticast.go @@ -7,6 +7,8 @@ import ( "os/exec" ) +// Options to configure the multicast: +//for each stream key, we can have several additional stream URL where the main stream is redirected to type Options struct { Outputs map[string][]string }