Skip to content

Commit

Permalink
chore: move console out of controller (#3735)
Browse files Browse the repository at this point in the history
  • Loading branch information
wesbillman authored Dec 12, 2024
1 parent 0611da7 commit ad7fd2a
Show file tree
Hide file tree
Showing 10 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"ftl/builtin"

lib "github.com/TBD54566975/ftl/backend/controller/console/testdata/go"
lib "github.com/TBD54566975/ftl/backend/console/testdata/go"
"github.com/TBD54566975/ftl/go-runtime/ftl" // Import the FTL SDK.
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@ require (
google.golang.org/protobuf v1.35.2 // indirect
)

replace github.com/TBD54566975/ftl => ./../../../../../..
replace github.com/TBD54566975/ftl => ./../../../../..
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion cmd/ftl-console/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"github.com/alecthomas/kong"

"github.com/TBD54566975/ftl"
"github.com/TBD54566975/ftl/backend/controller/console"
"github.com/TBD54566975/ftl/backend/console"
"github.com/TBD54566975/ftl/backend/protos/xyz/block/ftl/v1/ftlv1connect"
"github.com/TBD54566975/ftl/backend/timeline"
_ "github.com/TBD54566975/ftl/internal/automaxprocs" // Set GOMAXPROCS to match Linux container CPU quota.
Expand Down
2 changes: 1 addition & 1 deletion frontend/cli/cmd_serve.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import (

"github.com/TBD54566975/ftl"
"github.com/TBD54566975/ftl/backend/admin"
"github.com/TBD54566975/ftl/backend/console"
"github.com/TBD54566975/ftl/backend/controller"
"github.com/TBD54566975/ftl/backend/controller/artefacts"
"github.com/TBD54566975/ftl/backend/controller/console"
"github.com/TBD54566975/ftl/backend/cron"
"github.com/TBD54566975/ftl/backend/ingress"
"github.com/TBD54566975/ftl/backend/lease"
Expand Down

0 comments on commit ad7fd2a

Please sign in to comment.