refactor: update import paths for better readability #109

Merged
jank merged 10 commits from refactor-some-dots into task/CAS-50/add_rest_blackjack_logic_with_frontend_animations 2025-04-02 07:27:11 +00:00
Showing only changes of commit 1ea2f7c086 - Show all commits

View file

@ -1,8 +1,8 @@
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
import { CommonModule } from '@angular/common';
import { Card } from '../../models/blackjack.model';
import { GameState } from '../../enum/gameState';
import { GameControlsService } from '../../services/game-controls.service';
import { Card } from '@blackjack/models/blackjack.model';
import { GameControlsService } from '@blackjack/services/game-controls.service';
@Component({
selector: 'app-game-controls',
@ -96,5 +96,5 @@ export class GameControlsComponent {
protected readonly GameState = GameState;
constructor(protected gameControlsService: GameControlsService) {}
constructor(protected gameControlsService: GameControlsService) { }
}