Skip to content

Commit

Permalink
fix: lint errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
jochumdev committed Mar 1, 2025
1 parent 151f00c commit c4d5699
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/source/cli/urfave/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func ProvideApp(
app.Name = string(serviceName)
app.Version = string(serviceVersion)
app.Usage = "A go-orb app"
app.Action = func(c *cli.Context) error {
app.Action = func(_ *cli.Context) error {
return nil
}

Expand Down
1 change: 1 addition & 0 deletions server/grpc/tests/util/grpc/grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ func SetupServer(opts ...server.Option) (server.Entrypoint, func(t *testing.T),
}

components := types.NewComponents()

reg, err := registry.Provide("app", "v1.0.0", nil, components, logger)
if err != nil {
return nil, nil, fmt.Errorf("setup registry: %w", err)
Expand Down

0 comments on commit c4d5699

Please sign in to comment.