refactor(blackjack): move GameState to feature folder
All checks were successful
CI / Get Changed Files (pull_request) Successful in 6s
CI / eslint (pull_request) Successful in 19s
CI / test-build (pull_request) Successful in 27s
CI / prettier (pull_request) Successful in 41s
CI / Checkstyle Main (pull_request) Successful in 1m25s

This commit is contained in:
Jan-Marlon Leibl 2025-04-02 09:18:43 +02:00
parent f1c70f5f2c
commit f881f82ef1
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
5 changed files with 4 additions and 4 deletions

View file

@ -12,7 +12,7 @@ import { Card, BlackjackGame } from './models/blackjack.model';
import { BlackjackService } from './services/blackjack.service';
import { HttpErrorResponse } from '@angular/common/http';
import { GameResultComponent } from './components/game-result/game-result.component';
import { GameState } from '../../../enum/gameState';
import { GameState } from './enum/gameState';
@Component({
selector: 'app-blackjack',

View file

@ -1,7 +1,7 @@
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 { GameState } from '../../enum/gameState';
import { GameControlsService } from '../../services/game-controls.service';
@Component({

View file

@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component, Input, Output, EventEmitter } from '@angular/core';
import { CommonModule, CurrencyPipe } from '@angular/common';
import { animate, style, transition, trigger } from '@angular/animations';
import { GameState } from '../../../../../enum/gameState';
import { GameState } from '../../enum/gameState';
@Component({
selector: 'app-game-result',

View file

@ -1,6 +1,6 @@
import { Injectable } from '@angular/core';
import { Card } from '../models/blackjack.model';
import { GameState } from '../../../../enum/gameState';
import { GameState } from '../enum/gameState';
@Injectable({
providedIn: 'root',