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; }