pip-services-email-node
Version:
Email delivery sending microservice in Node.js
9 lines (8 loc) • 388 B
text/typescript
import { Descriptor } from 'pip-services3-commons-node';
import { CommandableGrpcService } from 'pip-services3-grpc-node';
export class EmailCommandableGrpcServiceV1 extends CommandableGrpcService {
public constructor() {
super('v1/email');
this._dependencyResolver.put('controller', new Descriptor('pip-services-email', 'controller', 'default', '*', '1.0'));
}
}