github.com/ungtb10d/cli/v2@v2.0.0-20221110210412-98537dd9d6a1/internal/codespaces/grpc/jupyter/JupyterServerHostService.v1.proto (about)

     1  syntax = "proto3";
     2  
     3  option go_package = "./jupyter";
     4  
     5  package Codespaces.Grpc.JupyterServerHostService.v1;
     6  
     7  service JupyterServerHost {
     8    rpc GetRunningServer (GetRunningServerRequest) returns (GetRunningServerResponse);
     9  }
    10  
    11  message GetRunningServerRequest {
    12  }
    13  
    14  message GetRunningServerResponse {
    15    bool Result = 1;
    16    string Message = 2;
    17    string Port = 3;
    18    string ServerUrl = 4;
    19  }