Skip to content

Commit

Permalink
fix: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Jan 23, 2024
1 parent c835376 commit d327871
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/orm/base_model/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,25 +46,24 @@ import {
ManyToManyRelationOptions,
} from '../../types/relations.js'

import { ModelKeys } from '../model_keys/index.js'
import * as errors from '../../errors.js'
import { Preloader } from '../preloader/index.js'
import { HasOne } from '../relations/has_one/index.js'
import { proxyHandler } from './proxy_handler.js'
import { ModelKeys } from '../model_keys/index.js'
import { HasOne } from '../relations/has_one/index.js'
import { HasMany } from '../relations/has_many/index.js'
import { BelongsTo } from '../relations/belongs_to/index.js'
import { ManyToMany } from '../relations/many_to_many/index.js'
import { HasManyThrough } from '../relations/has_many_through/index.js'
import { CamelCaseNamingStrategy } from '../naming_strategies/camel_case.js'
import { LazyLoadAggregates } from '../relations/aggregates_loader/lazy_load.js'
import {
isObject,
collectValues,
ensureRelation,
managedTransaction,
normalizeCherryPickObject,
} from '../../utils/index.js'
import { SnakeCaseNamingStrategy } from '../naming_strategies/snake_case.js'
import { LazyLoadAggregates } from '../relations/aggregates_loader/lazy_load.js'
import * as errors from '../../errors.js'
import { CamelCaseNamingStrategy } from '../naming_strategies/camel_case.js'

const MANY_RELATIONS = ['hasMany', 'manyToMany', 'hasManyThrough']
const DATE_TIME_TYPES = {
Expand Down

0 comments on commit d327871

Please sign in to comment.