18 lines
224 B
TypeScript
18 lines
224 B
TypeScript
import { Injectable } from '@angular/core';
|
|
|
|
import { RPCService } from '@loafer/ng-rpc';
|
|
|
|
|
|
|
|
@Injectable()
|
|
export class SensorItemDependencyService {
|
|
|
|
public constructor(
|
|
private rpcService: RPCService,
|
|
) {
|
|
|
|
}
|
|
|
|
|
|
}
|