All import paths updated to git.wntrmute.dev/mc/. Bumps mcdsl to v1.2.0. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
17 lines
329 B
Protocol Buffer
17 lines
329 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package mcns.v1;
|
|
|
|
option go_package = "git.wntrmute.dev/mc/mcns/gen/mcns/v1;mcnsv1";
|
|
|
|
// AdminService exposes server health and administrative operations.
|
|
service AdminService {
|
|
rpc Health(HealthRequest) returns (HealthResponse);
|
|
}
|
|
|
|
message HealthRequest {}
|
|
|
|
message HealthResponse {
|
|
string status = 1;
|
|
}
|