From 12bd0b71e3d58a2dc7be90218f75602274e1e96b Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Fri, 2 Oct 2020 09:46:15 +0200 Subject: [PATCH] Reorder imports --- stream/srt/srt.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stream/srt/srt.go b/stream/srt/srt.go index 69345ba..354a92d 100644 --- a/stream/srt/srt.go +++ b/stream/srt/srt.go @@ -2,14 +2,16 @@ package srt // #include import "C" + import ( - "github.com/haivision/srtgo" "gitlab.crans.org/nounous/ghostream/auth" "gitlab.crans.org/nounous/ghostream/auth/bypass" "log" "net" "strconv" "strings" + + "github.com/haivision/srtgo" ) // Options holds web package configuration