Skip to content

Commit 31578c3

Browse files
committed
Fixes build issue
1 parent 6c0d56a commit 31578c3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cli/azd/internal/grpcserver/project_service.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ import (
1414
"github.com/azure/azure-dev/cli/azd/pkg/lazy"
1515
"github.com/azure/azure-dev/cli/azd/pkg/project"
1616
"github.com/azure/azure-dev/cli/azd/pkg/templates"
17-
"google.golang.org/protobuf/types/known/structpb"
1817
"github.com/azure/azure-dev/cli/azd/pkg/tools/github"
18+
"google.golang.org/protobuf/types/known/structpb"
1919
)
2020

2121
type projectService struct {
2222
azdext.UnimplementedProjectServiceServer
2323

2424
lazyAzdContext *lazy.Lazy[*azdcontext.AzdContext]
2525
lazyEnvManager *lazy.Lazy[environment.Manager]
26-
importManager *project.ImportManager
26+
importManager *project.ImportManager
2727
lazyProjectConfig *lazy.Lazy[*project.ProjectConfig]
28-
ghCli *github.Cli
28+
ghCli *github.Cli
2929
}
3030

3131
// NewProjectService creates a new project service instance with lazy-loaded dependencies.
@@ -49,8 +49,8 @@ func NewProjectService(
4949
lazyAzdContext: lazyAzdContext,
5050
lazyEnvManager: lazyEnvManager,
5151
lazyProjectConfig: lazyProjectConfig,
52-
importManager: importManager,
53-
ghCli: ghCli,
52+
importManager: importManager,
53+
ghCli: ghCli,
5454
}
5555
}
5656

@@ -560,7 +560,7 @@ func (s *projectService) GetServiceConfigValue(
560560
//
561561
// Parameters:
562562
// - req.ServiceName: Name of the service to update configuration for
563-
// - req.Path: Dot-notation path where to store the section (e.g., "custom.database", or empty to replace entire service config)
563+
// - req.Path: Dot-notation path where to store the section
564564
// - req.Section: The configuration section as a protobuf Struct containing the data
565565
//
566566
// Returns an error if the specified service doesn't exist in the project.

0 commit comments

Comments
 (0)