Skip to content

Commit

Permalink
chore(autofmt): Automated formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 20, 2024
1 parent e281cbb commit 1bc6b34
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 2 additions & 1 deletion backend/controller/artefacts/artefact.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ package artefacts

import (
"context"
"github.com/TBD54566975/ftl/internal/sha256"
"io"

"github.com/TBD54566975/ftl/internal/sha256"
)

// Metadata container for an artefact's metadata
Expand Down
6 changes: 4 additions & 2 deletions backend/controller/artefacts/dal_registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ package artefacts

import (
"context"
"io"

sets "github.com/deckarep/golang-set/v2"

"github.com/TBD54566975/ftl/backend/libdal"
"github.com/TBD54566975/ftl/internal/sha256"
"github.com/TBD54566975/ftl/internal/slices"
sets "github.com/deckarep/golang-set/v2"
"io"
)

type ArtefactRow struct {
Expand Down
2 changes: 1 addition & 1 deletion backend/controller/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/TBD54566975/ftl/backend/controller/artefacts"
"hash"
"io"
"net/http"
Expand All @@ -35,6 +34,7 @@ import (

"github.com/TBD54566975/ftl"
"github.com/TBD54566975/ftl/backend/controller/admin"
"github.com/TBD54566975/ftl/backend/controller/artefacts"
"github.com/TBD54566975/ftl/backend/controller/console"
"github.com/TBD54566975/ftl/backend/controller/cronjobs"
"github.com/TBD54566975/ftl/backend/controller/dal"
Expand Down
2 changes: 1 addition & 1 deletion backend/controller/dal/dal.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import (
"encoding/json"
"errors"
"fmt"
"github.com/TBD54566975/ftl/backend/controller/artefacts"
"strings"
"time"

Expand All @@ -15,6 +14,7 @@ import (
xmaps "golang.org/x/exp/maps"
"google.golang.org/protobuf/proto"

"github.com/TBD54566975/ftl/backend/controller/artefacts"
dalsql "github.com/TBD54566975/ftl/backend/controller/dal/internal/sql"
"github.com/TBD54566975/ftl/backend/controller/encryption"
"github.com/TBD54566975/ftl/backend/controller/encryption/api"
Expand Down

0 comments on commit 1bc6b34

Please sign in to comment.