Skip to content

Commit

Permalink
zrok office hours - zrok agent ui development (#221)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelquigley committed Oct 11, 2024
1 parent c424190 commit a9abb8f
Show file tree
Hide file tree
Showing 11 changed files with 588 additions and 72 deletions.
82 changes: 43 additions & 39 deletions agent/agentGrpc/agent.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

174 changes: 174 additions & 0 deletions agent/agentGrpc/agent.pb.gw.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions agent/agentGrpc/agent.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,16 @@ option go_package = "github.com/openziti/zrok/agent/agentGrpc";
import "google/api/annotations.proto";

service Agent {
rpc AccessPrivate(AccessPrivateRequest) returns (AccessPrivateResponse) {}
rpc ReleaseAccess(ReleaseAccessRequest) returns (ReleaseAccessResponse) {}
rpc AccessPrivate(AccessPrivateRequest) returns (AccessPrivateResponse) {
option(google.api.http) = {
post: "/v1/agent/accessPrivate"
};
}
rpc ReleaseAccess(ReleaseAccessRequest) returns (ReleaseAccessResponse) {
option(google.api.http) = {
post: "/v1/agent/releaseAccess"
};
}
rpc ReleaseShare(ReleaseShareRequest) returns (ReleaseShareResponse) {
option(google.api.http) = {
post: "/v1/agent/releaseShare"
Expand Down
Loading

0 comments on commit a9abb8f

Please sign in to comment.