ucap-angular/projects/protocol-query/src/lib/services/query-protocol.service.ts
richard-loafle ddb1bafdc7 bug fixed
2020-04-06 09:31:16 +09:00

24 lines
620 B
TypeScript

import { Injectable, Inject } from '@angular/core';
import {
ModuleConfig,
QueryProtocolService as UcapQueryProtocolService
} from '@ucap/protocol-query';
import { LogService } from '@ucap/ng-logger';
import { ProtocolService } from '@ucap/ng-protocol';
import { _MODULE_CONFIG } from '../config/token';
@Injectable({
providedIn: 'root'
})
export class QueryProtocolService extends UcapQueryProtocolService {
constructor(
@Inject(_MODULE_CONFIG) moduleConfig: ModuleConfig,
protocolService: ProtocolService,
logService: LogService
) {
super(moduleConfig, protocolService, logService);
}
}