diff --git a/internal/config/config.go b/internal/config/config.go index 1ff252e..168085f 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -3,7 +3,6 @@ package config import ( "bytes" - "gitlab.crans.org/nounous/ghostream/stream/telnet" "log" "net" "strings" @@ -15,6 +14,7 @@ import ( "gitlab.crans.org/nounous/ghostream/internal/monitoring" "gitlab.crans.org/nounous/ghostream/stream/forwarding" "gitlab.crans.org/nounous/ghostream/stream/srt" + "gitlab.crans.org/nounous/ghostream/stream/telnet" "gitlab.crans.org/nounous/ghostream/stream/webrtc" "gitlab.crans.org/nounous/ghostream/web" "gopkg.in/yaml.v2" diff --git a/main.go b/main.go index 36815b2..82d78b8 100644 --- a/main.go +++ b/main.go @@ -5,7 +5,6 @@ package main import ( - "gitlab.crans.org/nounous/ghostream/stream/telnet" "log" "gitlab.crans.org/nounous/ghostream/auth" @@ -13,6 +12,7 @@ import ( "gitlab.crans.org/nounous/ghostream/internal/monitoring" "gitlab.crans.org/nounous/ghostream/stream/forwarding" "gitlab.crans.org/nounous/ghostream/stream/srt" + "gitlab.crans.org/nounous/ghostream/stream/telnet" "gitlab.crans.org/nounous/ghostream/stream/webrtc" "gitlab.crans.org/nounous/ghostream/web" ) diff --git a/web/handler.go b/web/handler.go index d390db6..2ba4bd9 100644 --- a/web/handler.go +++ b/web/handler.go @@ -4,7 +4,6 @@ package web import ( "bytes" "encoding/json" - "gitlab.crans.org/nounous/ghostream/stream/telnet" "html/template" "log" "net" @@ -14,6 +13,7 @@ import ( "github.com/markbates/pkger" "gitlab.crans.org/nounous/ghostream/internal/monitoring" "gitlab.crans.org/nounous/ghostream/stream/srt" + "gitlab.crans.org/nounous/ghostream/stream/telnet" "gitlab.crans.org/nounous/ghostream/stream/webrtc" )