8 lines
224 B
TypeScript
8 lines
224 B
TypeScript
|
import { SensorItemDependencyService } from './sensor-item-dependency.service';
|
||
|
import { SensorItemService } from './sensor-item.service';
|
||
|
|
||
|
export const SERVICES = [
|
||
|
SensorItemDependencyService,
|
||
|
SensorItemService
|
||
|
];
|