24 lines
620 B
TypeScript
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);
|
|
}
|
|
}
|