From e03e11160304aebe5b2d6c406daa556166b97c5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Mon, 21 Feb 2022 15:42:15 +0100 Subject: [PATCH] Cleanup: move license declaration comment --- internal/worker/listener.go | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/internal/worker/listener.go b/internal/worker/listener.go index 26c325ac..0e307273 100644 --- a/internal/worker/listener.go +++ b/internal/worker/listener.go @@ -1,18 +1,5 @@ package worker -import ( - "context" - "errors" - "fmt" - "net/http" - "strings" - "sync" - "time" - - "github.com/rs/zerolog/log" - "gitlab.com/blender/flamenco-ng-poc/pkg/api" -) - /* ***** BEGIN GPL LICENSE BLOCK ***** * * Original Code Copyright (C) 2022 Blender Foundation. @@ -33,6 +20,19 @@ import ( * * ***** END GPL LICENSE BLOCK ***** */ +import ( + "context" + "errors" + "fmt" + "net/http" + "strings" + "sync" + "time" + + "github.com/rs/zerolog/log" + "gitlab.com/blender/flamenco-ng-poc/pkg/api" +) + var _ CommandListener = (*Listener)(nil) var _ TaskExecutionListener = (*Listener)(nil)