adonis-grpc-consumer
Version:
Adonis gRPC client provider for easily communicate with gRPC services
30 lines (26 loc) • 922 B
Plain Text
import { GrpcConsumerConfig } from '@ioc:Adonis/Addons/GrpcConsumer'
let grpcConfig: GrpcConsumerConfig = {
/*
|--------------------------------------------------------------------------
| Will give some output to the console about gRPC connections
|--------------------------------------------------------------------------
*/
verbose: false,
/*
|--------------------------------------------------------------------------
| Here you can define the gRPC services you want to consume.
|--------------------------------------------------------------------------
*/
clients: [
// {
// name: 'MY_SERVICE',
// options: {
// package: 'my_service',
// serviceName: 'MyService',
// protoPath: path.join(__dirname + '/../proto/MyService.proto'),
// url: '127.0.0.1:4545',
// },
// },
],
}
export default grpcConfig