diff --git a/cmd/thermal-recorder/service.go b/cmd/thermal-recorder/service.go index a17332c..afb50da 100644 --- a/cmd/thermal-recorder/service.go +++ b/cmd/thermal-recorder/service.go @@ -18,6 +18,7 @@ package main import ( "errors" + "github.com/TheCacophonyProject/go-cptv/cptvframe" "github.com/TheCacophonyProject/thermal-recorder/headers" diff --git a/cmd/thermal-recorder/snapshot.go b/cmd/thermal-recorder/snapshot.go index 4097732..cebb763 100644 --- a/cmd/thermal-recorder/snapshot.go +++ b/cmd/thermal-recorder/snapshot.go @@ -18,9 +18,10 @@ package main import ( "errors" - "github.com/TheCacophonyProject/go-cptv/cptvframe" "sync" "time" + + "github.com/TheCacophonyProject/go-cptv/cptvframe" ) const ( diff --git a/motion/motionprocessor.go b/motion/motionprocessor.go index eed2114..162a700 100644 --- a/motion/motionprocessor.go +++ b/motion/motionprocessor.go @@ -18,12 +18,13 @@ package motion import ( "errors" - "github.com/TheCacophonyProject/go-cptv/cptvframe" - "github.com/TheCacophonyProject/window" "math" "reflect" "time" + "github.com/TheCacophonyProject/go-cptv/cptvframe" + "github.com/TheCacophonyProject/window" + config "github.com/TheCacophonyProject/go-config" "github.com/TheCacophonyProject/thermal-recorder/loglimiter" "github.com/TheCacophonyProject/thermal-recorder/recorder"