diff --git a/.github/workflows/proto-lint.yml b/.github/workflows/proto-lint.yml index f3e36c5c..3a29973c 100644 --- a/.github/workflows/proto-lint.yml +++ b/.github/workflows/proto-lint.yml @@ -21,7 +21,7 @@ jobs: go install google.golang.org/protobuf/cmd/protoc-gen-go@latest go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest - - uses: bufbuild/buf-setup-action@v1.32.2 + - uses: bufbuild/buf-setup-action@v1.33.0 - name: buf generate working-directory: ./gctrpc diff --git a/gctrpc/rpc.proto b/gctrpc/rpc.proto index 7b35b96d..da69835d 100644 --- a/gctrpc/rpc.proto +++ b/gctrpc/rpc.proto @@ -1791,21 +1791,21 @@ service GoCryptoTraderService { rpc SetLoggerDetails(SetLoggerDetailsRequest) returns (GetLoggerDetailsResponse) { option (google.api.http) = { - post: "/v1/setloggerdetails", + post: "/v1/setloggerdetails" body: "*" }; } rpc GetExchangePairs(GetExchangePairsRequest) returns (GetExchangePairsResponse) { option (google.api.http) = { - post: "/v1/getexchangepairs", + post: "/v1/getexchangepairs" body: "*" }; } rpc SetExchangePair(SetExchangePairRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/setexchangepair", + post: "/v1/setexchangepair" body: "*" }; } @@ -1836,14 +1836,14 @@ service GoCryptoTraderService { rpc GCTScriptUpload(GCTScriptUploadRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/gctscript/upload", + post: "/v1/gctscript/upload" body: "*" }; } rpc GCTScriptReadScript(GCTScriptReadScriptRequest) returns (GCTScriptQueryResponse) { option (google.api.http) = { - post: "/v1/gctscript/read", + post: "/v1/gctscript/read" body: "*" }; } @@ -1858,27 +1858,27 @@ service GoCryptoTraderService { rpc GCTScriptStop(GCTScriptStopRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/gctscript/stop", + post: "/v1/gctscript/stop" body: "*" }; } rpc GCTScriptStopAll(GCTScriptStopAllRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/gctscript/stopall", + post: "/v1/gctscript/stopall" body: "*" }; } rpc GCTScriptListAll(GCTScriptListAllRequest) returns (GCTScriptStatusResponse) { option (google.api.http) = { - post: "/v1/gctscript/list", + post: "/v1/gctscript/list" body: "*" }; } rpc GCTScriptAutoLoadToggle(GCTScriptAutoLoadRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/gctscript/autoload", + post: "/v1/gctscript/autoload" body: "*" }; } @@ -1952,7 +1952,7 @@ service GoCryptoTraderService { rpc UpsertDataHistoryJob(UpsertDataHistoryJobRequest) returns (UpsertDataHistoryJobResponse) { option (google.api.http) = { - post: "/v1/upsertdatahistoryjob", + post: "/v1/upsertdatahistoryjob" body: "*" }; } @@ -1971,13 +1971,13 @@ service GoCryptoTraderService { } rpc SetDataHistoryJobStatus(SetDataHistoryJobStatusRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/setdatahistoryjobstatus", + post: "/v1/setdatahistoryjobstatus" body: "*" }; } rpc UpdateDataHistoryJobPrerequisite(UpdateDataHistoryJobPrerequisiteRequest) returns (GenericResponse) { option (google.api.http) = { - post: "/v1/updatedatahistoryjobprerequisite", + post: "/v1/updatedatahistoryjobprerequisite" body: "*" }; }