1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2025-01-14 14:43:17 +08:00

fixing interface implementation error

This commit is contained in:
Patrik J. Braun 2019-02-04 18:00:30 -05:00
parent 8bf280dda7
commit 6489fe3930

View File

@ -1,6 +1,11 @@
import {IPersonManager} from '../interfaces/IPersonManager';
import {MediaDTO} from '../../../common/entities/MediaDTO';
export class IndexingTaskManager implements IPersonManager {
keywordsToPerson(media: MediaDTO[]): Promise<void> {
throw new Error('Method not implemented.');
}
get(name: string): Promise<any> {
throw new Error('not supported by memory DB');
}