generated from TBD54566975/tbd-project-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This leverages the v2 SchemaService to manage its routing tables.
- Loading branch information
1 parent
eb0a372
commit b7d7aef
Showing
21 changed files
with
1,554 additions
and
1,212 deletions.
There are no files selected for viewing
1,855 changes: 887 additions & 968 deletions
1,855
backend/protos/xyz/block/ftl/v1/schema/schema.pb.go
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
syntax = "proto3"; | ||
|
||
package xyz.block.ftl.v2alpha1; | ||
|
||
import "xyz/block/ftl/v1/ftl.proto"; | ||
import "xyz/block/ftl/v1/verb.proto"; | ||
|
||
option go_package = "github.com/TBD54566975/ftl/backend/protos/xyz/block/ftl/v2alpha1"; | ||
option java_multiple_files = true; | ||
|
||
service RoutingService { | ||
rpc Ping(v1.PingRequest) returns (v1.PingResponse) { | ||
option idempotency_level = NO_SIDE_EFFECTS; | ||
} | ||
rpc Call(v1.CallRequest) returns (v1.CallResponse); | ||
} |
20 changes: 13 additions & 7 deletions
20
backend/protos/xyz/block/ftl/v2alpha1/v2alpha1connect/ftl.connect.go
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.