fix issues in core
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Presenter } from '@core/shared/presentation';
|
||||
import type { Presenter } from '../../../shared/presentation/Presenter';
|
||||
import type { GetLeagueProtestsResult } from '@core/racing/application/use-cases/GetLeagueProtestsUseCase';
|
||||
import { LeagueAdminProtestsDTO } from '../dtos/LeagueAdminProtestsDTO';
|
||||
import { ProtestDTO } from '../dtos/ProtestDTO';
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Presenter } from '@core/shared/presentation';
|
||||
import type { Presenter } from '../../../shared/presentation/Presenter';
|
||||
import type { GetLeagueSeasonsResult } from '@core/racing/application/use-cases/GetLeagueSeasonsUseCase';
|
||||
import { LeagueSeasonSummaryDTO } from '../dtos/LeagueSeasonSummaryDTO';
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import type { GetLeagueStandingsResult } from '@core/racing/application/use-cases/GetLeagueStandingsUseCase';
|
||||
import { LeagueStandingsDTO } from '../dtos/LeagueStandingsDTO';
|
||||
import type { Presenter } from '@core/shared/presentation';
|
||||
import type { Presenter } from '../../../shared/presentation/Presenter';
|
||||
|
||||
export class LeagueStandingsPresenter implements Presenter<GetLeagueStandingsResult, LeagueStandingsDTO> {
|
||||
private result: LeagueStandingsDTO | null = null;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import type { GetLeagueStatsResult } from '@core/racing/application/use-cases/GetLeagueStatsUseCase';
|
||||
import { LeagueStatsDTO } from '../dtos/LeagueStatsDTO';
|
||||
import type { Presenter } from '@core/shared/presentation';
|
||||
import type { Presenter } from '../../../shared/presentation/Presenter';
|
||||
|
||||
export class LeagueStatsPresenter implements Presenter<GetLeagueStatsResult, LeagueStatsDTO> {
|
||||
private result: LeagueStatsDTO | null = null;
|
||||
|
||||
Reference in New Issue
Block a user