service-facets-node
Version:
Faceted search microservice in Node.js / ES2017
9 lines (8 loc) • 387 B
text/typescript
import { Descriptor } from 'pip-services3-commons-nodex';
import { CommandableHttpService } from 'pip-services3-rpc-nodex';
export class FacetsCommandableHttpServiceV1 extends CommandableHttpService {
public constructor() {
super('v1/facets');
this._dependencyResolver.put('controller', new Descriptor('service-facets', 'controller', 'default', '*', '1.0'));
}
}