12 lines
343 B
TypeScript
12 lines
343 B
TypeScript
import { IdToObjectListCacheStoreService } from './id-to-object-list-cache-store.service';
|
|
import { Injectable } from '@angular/core';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class IdToObjectCacheRegisterService {
|
|
constructor(private _idToObjectListCacheStoreService: IdToObjectListCacheStoreService) {}
|
|
|
|
registerCaches() {}
|
|
}
|