mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 23:13:04 +00:00
15 lines
437 B
TypeScript
15 lines
437 B
TypeScript
|
|
import { ObjectCacheEffects } from './cache/object-cache.effects';
|
|
import { ResponseCacheEffects } from './cache/response-cache.effects';
|
|
import { UUIDIndexEffects } from './index/index.effects';
|
|
import { RequestEffects } from './data/request.effects';
|
|
import { AuthEffects } from './auth/auth.effects';
|
|
|
|
export const coreEffects = [
|
|
ResponseCacheEffects,
|
|
RequestEffects,
|
|
ObjectCacheEffects,
|
|
UUIDIndexEffects,
|
|
AuthEffects,
|
|
];
|