From c581cf01010b43eae8fd9da585d39024023ba6e8 Mon Sep 17 00:00:00 2001 From: Mic Neale Date: Thu, 28 Mar 2024 09:12:39 +1100 Subject: [PATCH] test autofmt --- go-runtime/ftl/call.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/go-runtime/ftl/call.go b/go-runtime/ftl/call.go index 45b3e35c40..c608fe3bfb 100644 --- a/go-runtime/ftl/call.go +++ b/go-runtime/ftl/call.go @@ -1,12 +1,6 @@ package ftl import ( - "context" - "fmt" - "reflect" - "runtime" - "strings" - "connectrpc.com/connect" ftlv1 "github.com/TBD54566975/ftl/backend/protos/xyz/block/ftl/v1" @@ -15,6 +9,12 @@ import ( "github.com/TBD54566975/ftl/backend/schema/strcase" "github.com/TBD54566975/ftl/go-runtime/encoding" "github.com/TBD54566975/ftl/internal/rpc" + + "context" + "fmt" + "reflect" + "runtime" + "strings" ) func call[Req, Resp any](ctx context.Context, callee *schemapb.Ref, req Req) (resp Resp, err error) {