github.com/microsoft/moc@v0.17.1/rpc/common/admin/version/moc_common_version.proto (about)

     1  // Copyright (c) Microsoft Corporation.
     2  // Licensed under the Apache v2.0 license.
     3  
     4  syntax = "proto3";
     5  option go_package = "github.com/microsoft/moc/rpc/common/admin";
     6  package moc.common.admin;
     7  
     8  message VersionRequest {}
     9  
    10  message VersionResponse {
    11  	string version = 1;
    12      string mocversion = 2;
    13  	string error = 3;
    14  }
    15  
    16  service VersionAgent {
    17  	rpc Get(VersionRequest) returns (VersionResponse) {}
    18  }