mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-14 04:39:33 +00:00
The podman module paths are moving from github.com/containers/podman to go.podman.io/podman. This will help with future mobility. Signed-off-by: Brent Baude <bbaude@redhat.com>
17 lines
265 B
Protocol Buffer
17 lines
265 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package io.podman.v1;
|
|
|
|
option go_package = "go.podman.io/podman/v6/pkg/api/grpcpb";
|
|
|
|
service Noop {
|
|
rpc Noop(NoopRequest) returns (NoopResponse);
|
|
}
|
|
|
|
message NoopRequest {
|
|
string ignored = 1;
|
|
}
|
|
|
|
message NoopResponse {
|
|
string ignored = 1;
|
|
}
|