refactor(game-controls): update import paths for consistency
This commit is contained in:
parent
ba854be5db
commit
889863aad6
1 changed files with 3 additions and 3 deletions
|
@ -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) { }
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue