Skip to content

Commit

Permalink
Init reporter (#655)
Browse files Browse the repository at this point in the history
We've decided to forgo using the reporter to normalize the JSON payload
and, instead, at a later stage, refactor it to report payloads to the
remote backend. For now, disable the API (keep the types in place)
so it's not accidentally relied on.

---------

Co-authored-by: Sebastian Tiedtke <[email protected]>
  • Loading branch information
peraltafederico and sourishkrout committed Sep 3, 2024
1 parent db6699a commit cde4682
Show file tree
Hide file tree
Showing 12 changed files with 2,363 additions and 1 deletion.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/stateful/runme/v3

go 1.22
go 1.22.0

// replace github.com/stateful/godotenv => ../godotenv

Expand Down
2 changes: 2 additions & 0 deletions internal/cmd/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ The kernel is used to run long running processes like shells and interacting wit
)
parserv1.RegisterParserServiceServer(server, editorservice.NewParserServiceServer(logger))
projectv1.RegisterProjectServiceServer(server, projectservice.NewProjectServiceServer(logger))
// todo(sebastian): decided to forgo the reporter service for now
// reporterv1alpha1.RegisterReporterServiceServer(server, reporterservice.NewReporterServiceServer(logger))
if enableRunner {
runnerServicev1, err := runner.NewRunnerService(logger)
if err != nil {
Expand Down
Loading

0 comments on commit cde4682

Please sign in to comment.