chore : formatting
release-tag / release-image (push) Successful in 55s

This commit is contained in:
2024-12-21 15:55:04 +01:00
parent a586e1d73c
commit 375b1316f4
+2 -8
View File
@@ -5,24 +5,18 @@ import {
Inject,
Injectable,
} from '@nestjs/common';
import { Container, Game, Player, Team } from '../schemas/game.schema';
import { Container, Game, Player } from '../schemas/game.schema';
import mongoose, { Document, Model } from 'mongoose';
import { Card } from 'src/cards/schemas/cards.schema';
import { EventEmitter2 } from '@nestjs/event-emitter';
import { Effect } from 'src/cards/schemas/effect.schema';
import {
CardEffects,
CardRole,
CardType,
EffectType,
} from 'src/cards/schemas/cards.types';
import { CardEffects } from 'src/cards/schemas/cards.types';
import { getPlayerTeam, WithTransaction } from '../utils';
import {
conditionsMappings,
effectMappings,
isAutoActivable,
perMapping,
removeToken,
tokenMappings,
} from './effect.functions';
import { InjectConnection, InjectModel } from '@nestjs/mongoose';