- import { GenericCrudService } from '@/server/utils/generic-crud.service';
- import { DataSource } from 'typeorm';
- import { File } from './file.entity';
- export class FileService extends GenericCrudService<File> {
- constructor(dataSource: DataSource) {
- super(dataSource, File);
- }
- }
|