Cleanup: move license declaration comment

This commit is contained in:
Sybren A. Stüvel 2022-02-21 15:42:15 +01:00
parent 1756369b70
commit e03e111603

View File

@ -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)