mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
|
|
import Image from '../models/image-model';
|
||
|
|
import BaseRepository from './base-repository';
|
||
|
|
|
||
|
|
class ImageRepository extends BaseRepository<Image> {
|
||
|
|
constructor(db) {
|
||
|
|
super(db,'images');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export default ImageRepository;
|