Skip to content
This repository has been archived by the owner on Sep 5, 2022. It is now read-only.

Commit

Permalink
Travis CI was disabled
Browse files Browse the repository at this point in the history
  • Loading branch information
litichevskiydv committed Mar 22, 2021
1 parent acbb1ac commit 5063962
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 36 deletions.
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[![npm downloads](https://img.shields.io/npm/dt/grpc-host-builder.svg)](https://www.npmjs.com/package/grpc-host-builder)
[![dependencies](https://img.shields.io/david/litichevskiydv/grpc-host-builder.svg)](https://www.npmjs.com/package/grpc-host-builder)
[![dev dependencies](https://img.shields.io/david/dev/litichevskiydv/grpc-host-builder.svg)](https://www.npmjs.com/package/grpc-host-builder)
[![Build Status](https://travis-ci.org/litichevskiydv/grpc-host-builder.svg?branch=master)](https://travis-ci.org/litichevskiydv/grpc-host-builder)
[![Build Status](https://github.com/litichevskiydv/grpc-host-builder/actions/workflows/ci.yaml/badge.svg?branch=master)](https://github.com/litichevskiydv/grpc-host-builder/actions/workflows/ci.yaml)
[![Coverage Status](https://coveralls.io/repos/github/litichevskiydv/grpc-host-builder/badge.svg?branch=master)](https://coveralls.io/github/litichevskiydv/grpc-host-builder?branch=master)

Lightweight configurator for gRPC host
Expand Down Expand Up @@ -43,10 +43,10 @@ const server = await new GrpcHostBuilder()
return await next(call);
})
.addService(packageObject.v1.Greeter.service, {
sayHello: call => {
sayHello: (call) => {
const request = new HelloRequest(call.request);
return new HelloResponse({ message: `Hello, ${request.name}!` });
}
},
})
.bind(grpcBind)
.buildAsync();
Expand Down

0 comments on commit 5063962

Please sign in to comment.