Cleanup some imports

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2021-08-29 18:57:00 +02:00
parent bcc9ec9c75
commit 3658204acb
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3
10 changed files with 11 additions and 15 deletions

View file

@ -4,13 +4,14 @@
* SPDX-License-Identifier: AGPL-3.0-only
*/
import {
Column,
CreateDateColumn,
Entity,
ManyToMany,
OneToMany,
PrimaryGeneratedColumn,
UpdateDateColumn,
} from 'typeorm';
import { Column, OneToMany } from 'typeorm';
import { AuthToken } from '../auth/auth-token.entity';
import { Author } from '../authors/author.entity';