Skip to content
Snippets Groups Projects
effects.ts 232 B
Newer Older
import { Injectable } from '@angular/core';
import { Actions } from '@ngrx/effects';
import { DARSActionTypes } from '@app/dars/store/actions';

@Injectable()
export class DARSEffects {
  constructor(private actions$: Actions) {}
}