Skip to content

Commit d4d07fb

Browse files
Merge pull request #62 from observerly/feature/proto/SolveService/rpc
feat: add SolveService rpc calls
2 parents 0782422 + 3ad444a commit d4d07fb

3 files changed

Lines changed: 383 additions & 0 deletions

File tree

internal/gen/solve/v1/solve.pb.go

Lines changed: 226 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/gen/solve/v1/solvev1connect/solve.connect.go

Lines changed: 117 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

proto/solve/v1/solve.proto

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*****************************************************************************************************************/
2+
3+
// @author Michael Roberts <michael@observerly.com>
4+
// @package @observerly/nova/proto/solve/v1
5+
// @license Copyright © 2021-2025 observerly
6+
7+
/*****************************************************************************************************************/
8+
9+
syntax = "proto3";
10+
11+
/*****************************************************************************************************************/
12+
13+
package solve.v1;
14+
15+
/*****************************************************************************************************************/
16+
17+
// Import the wcs.proto definitions
18+
import "wcs/v1/wcs.proto";
19+
20+
/*****************************************************************************************************************/
21+
22+
message SolveForWCSFITSHandlerRequest {
23+
string owner = 1;
24+
string bucket_name = 2;
25+
string location = 3;
26+
}
27+
28+
/*****************************************************************************************************************/
29+
30+
message SolveForWCSFITSHandlerResponse {
31+
wcs.v1.WCS wcs = 1;
32+
}
33+
34+
/*****************************************************************************************************************/
35+
36+
service SolveService {
37+
rpc SolveForWCSFITSHandler(SolveForWCSFITSHandlerRequest) returns (SolveForWCSFITSHandlerResponse) {}
38+
}
39+
40+
/*****************************************************************************************************************/

0 commit comments

Comments
 (0)