github.com/stackb/rules_proto@v0.0.0-20240221195024-5428336c51f1/example/routeguide/closure/main.js (about)

     1  goog.provide('example.routeguide.closure.main');
     2  
     3  /**
     4   * Main entry point
     5   * @export
     6   */
     7  example.routeguide.closure.main = function () {
     8      const Client = goog.require('example.routeguide.closure.GrpcJsClient');
     9      const client = new Client();
    10      client.run();
    11  };