Skip to content

Commit

Permalink
mv service host to pkg (#494)
Browse files Browse the repository at this point in the history
  • Loading branch information
gertd authored Nov 25, 2024
1 parent daa897b commit 51555cc
Show file tree
Hide file tree
Showing 13 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pkg/app/authorizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import (

authz "github.com/aserto-dev/go-authorizer/aserto/authorizer/v2"
azOpenAPI "github.com/aserto-dev/openapi-authorizer/publish/authorizer"
builder "github.com/aserto-dev/topaz/internal/pkg/service/builder"
"github.com/aserto-dev/topaz/pkg/app/impl"
"github.com/aserto-dev/topaz/pkg/cc/config"
builder "github.com/aserto-dev/topaz/pkg/service/builder"
"github.com/aserto-dev/topaz/resolvers"
"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"

Expand Down
2 changes: 1 addition & 1 deletion pkg/app/console.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (
"net/http"
"strings"

builder "github.com/aserto-dev/topaz/internal/pkg/service/builder"
"github.com/aserto-dev/topaz/pkg/app/handlers"
"github.com/aserto-dev/topaz/pkg/cc/config"
builder "github.com/aserto-dev/topaz/pkg/service/builder"
"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
"google.golang.org/grpc"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/app/edgedir.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
dsm3stream "github.com/aserto-dev/go-directory/pkg/gateway/model/v3"
"github.com/aserto-dev/go-edge-ds/pkg/directory"
dsOpenAPI "github.com/aserto-dev/openapi-directory/publish/directory"
builder "github.com/aserto-dev/topaz/internal/pkg/service/builder"
builder "github.com/aserto-dev/topaz/pkg/service/builder"

"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
"github.com/samber/lo"
Expand Down
2 changes: 1 addition & 1 deletion pkg/app/topaz.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import (
decisionlog "github.com/aserto-dev/topaz/decision_log"
"github.com/aserto-dev/topaz/decision_log/logger/file"
"github.com/aserto-dev/topaz/decision_log/logger/nop"
builder "github.com/aserto-dev/topaz/internal/pkg/service/builder"
"github.com/aserto-dev/topaz/pkg/app/auth"
"github.com/aserto-dev/topaz/pkg/app/handlers"
"github.com/aserto-dev/topaz/pkg/app/middlewares"
"github.com/aserto-dev/topaz/pkg/cc/config"
builder "github.com/aserto-dev/topaz/pkg/service/builder"

"github.com/grpc-ecosystem/grpc-gateway/v2/runtime"
"github.com/pkg/errors"
Expand Down
2 changes: 1 addition & 1 deletion pkg/app/topaz/wire.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
"google.golang.org/grpc"

"github.com/aserto-dev/logger"
builder "github.com/aserto-dev/topaz/internal/pkg/service/builder"
"github.com/aserto-dev/topaz/pkg/app"
"github.com/aserto-dev/topaz/pkg/cc"
"github.com/aserto-dev/topaz/pkg/cc/config"
builder "github.com/aserto-dev/topaz/pkg/service/builder"
"github.com/aserto-dev/topaz/resolvers"
)

Expand Down
2 changes: 1 addition & 1 deletion pkg/app/topaz/wire_gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pkg/cc/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/aserto-dev/go-edge-ds/pkg/directory"
"github.com/aserto-dev/logger"
"github.com/aserto-dev/runtime"
builder "github.com/aserto-dev/topaz/internal/pkg/service/builder"
"github.com/aserto-dev/topaz/pkg/debug"
builder "github.com/aserto-dev/topaz/pkg/service/builder"
"github.com/pkg/errors"
"github.com/rs/zerolog"
)
Expand Down
2 changes: 1 addition & 1 deletion pkg/cc/config/loader.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (
"strings"

"github.com/aserto-dev/self-decision-logger/logger/self"
builder "github.com/aserto-dev/topaz/internal/pkg/service/builder"
"github.com/aserto-dev/topaz/pkg/cli/cc"
builder "github.com/aserto-dev/topaz/pkg/service/builder"
"github.com/mitchellh/mapstructure"
"github.com/spf13/viper"
)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 51555cc

Please sign in to comment.