mirror of
https://github.com/containers/podman.git
synced 2026-03-30 04:22:04 -04:00
Add a bare minimum GRPC service to the podman system service socket. Signed-off-by: Nalin Dahyabhai <nalin@redhat.com>
18 lines
274 B
Protocol Buffer
18 lines
274 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package io.podman.v1;
|
|
|
|
option go_package = "github.com/containers/podman/v6/pkg/api/grpcpb";
|
|
|
|
service Noop {
|
|
rpc Noop(NoopRequest) returns (NoopResponse);
|
|
}
|
|
|
|
message NoopRequest {
|
|
string ignored = 1;
|
|
}
|
|
|
|
message NoopResponse {
|
|
string ignored = 1;
|
|
}
|