refactor(game-controls): update import paths for consistency
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / Checkstyle Main (pull_request) Has been skipped
CI / eslint (pull_request) Successful in 20s
CI / test-build (pull_request) Failing after 26s
CI / prettier (pull_request) Failing after 32s

This commit is contained in:
Jan K9f 2025-04-02 09:19:09 +02:00
parent ae8dcab038
commit 1ea2f7c086
Signed by: jank
GPG key ID: 22BEAC760B3333D6

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) { }
}