diff --git a/backend/controller/timeline/events_call.go b/backend/controller/timeline/events_call.go index 38722b5f63..93706529a6 100644 --- a/backend/controller/timeline/events_call.go +++ b/backend/controller/timeline/events_call.go @@ -6,6 +6,9 @@ import ( "fmt" "time" + "github.com/alecthomas/types/either" + "github.com/alecthomas/types/optional" + ftlencryption "github.com/TBD54566975/ftl/backend/controller/encryption/api" "github.com/TBD54566975/ftl/backend/controller/timeline/internal/sql" "github.com/TBD54566975/ftl/backend/libdal" @@ -13,8 +16,6 @@ import ( "github.com/TBD54566975/ftl/backend/schema" "github.com/TBD54566975/ftl/internal/log" "github.com/TBD54566975/ftl/internal/model" - "github.com/alecthomas/types/either" - "github.com/alecthomas/types/optional" ) type CallEvent struct { diff --git a/backend/controller/timeline/events_deployment.go b/backend/controller/timeline/events_deployment.go index b955567e60..723da92858 100644 --- a/backend/controller/timeline/events_deployment.go +++ b/backend/controller/timeline/events_deployment.go @@ -3,8 +3,9 @@ package timeline import ( "time" - "github.com/TBD54566975/ftl/internal/model" "github.com/alecthomas/types/optional" + + "github.com/TBD54566975/ftl/internal/model" ) type DeploymentCreatedEvent struct { diff --git a/backend/controller/timeline/events_ingress.go b/backend/controller/timeline/events_ingress.go index 1a3ed9faad..7419b4b172 100644 --- a/backend/controller/timeline/events_ingress.go +++ b/backend/controller/timeline/events_ingress.go @@ -4,10 +4,11 @@ import ( "context" "encoding/json" + "github.com/alecthomas/types/optional" + "github.com/TBD54566975/ftl/backend/controller/timeline/internal/sql" "github.com/TBD54566975/ftl/backend/libdal" "github.com/TBD54566975/ftl/internal/model" - "github.com/alecthomas/types/optional" ) type IngresEvent struct { diff --git a/backend/controller/timeline/events_log.go b/backend/controller/timeline/events_log.go index a72e830004..ee5ec0a689 100644 --- a/backend/controller/timeline/events_log.go +++ b/backend/controller/timeline/events_log.go @@ -5,12 +5,13 @@ import ( "fmt" "time" + "github.com/alecthomas/types/optional" + ftlencryption "github.com/TBD54566975/ftl/backend/controller/encryption/api" "github.com/TBD54566975/ftl/backend/controller/timeline/internal/sql" "github.com/TBD54566975/ftl/backend/libdal" ftlv1 "github.com/TBD54566975/ftl/backend/protos/xyz/block/ftl/v1" "github.com/TBD54566975/ftl/internal/model" - "github.com/alecthomas/types/optional" ) type LogEvent struct { diff --git a/backend/controller/timeline/query.go b/backend/controller/timeline/query.go index 7a3945f5df..54ed0ec4b6 100644 --- a/backend/controller/timeline/query.go +++ b/backend/controller/timeline/query.go @@ -7,12 +7,13 @@ import ( "strconv" "time" + "github.com/alecthomas/types/optional" + "github.com/TBD54566975/ftl/backend/controller/timeline/internal/sql" "github.com/TBD54566975/ftl/backend/libdal" "github.com/TBD54566975/ftl/backend/schema" "github.com/TBD54566975/ftl/internal/log" "github.com/TBD54566975/ftl/internal/model" - "github.com/alecthomas/types/optional" ) type eventFilterCall struct {