1
0
forked from noxious/server

Added ESLint

This commit is contained in:
2024-12-27 02:50:11 +01:00
parent 343c67a110
commit 30dc69ab4b
111 changed files with 3204 additions and 269 deletions

View File

@ -1,12 +1,14 @@
import { Collection, Entity, ManyToOne, OneToMany, PrimaryKey, Property } from '@mikro-orm/core'
import { BaseEntity } from '#application/base/baseEntity'
import { User } from './user'
import { Zone } from './zone'
import { CharacterType } from './characterType'
import { CharacterEquipment } from './characterEquipment'
import { CharacterHair } from './characterHair'
import { CharacterItem } from './characterItem'
import { CharacterEquipment } from './characterEquipment'
import { CharacterType } from './characterType'
import { Chat } from './chat'
import { User } from './user'
import { Zone } from './zone'
import { BaseEntity } from '#application/base/baseEntity'
@Entity()
export class Character extends BaseEntity {