1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/src/backend/model/database/LocationManager.ts

11 lines
200 B
TypeScript
Raw Normal View History

import {GPSMetadata} from '../../../common/entities/PhotoDTO';
export class LocationManager {
async getGPSData(text: string): Promise<GPSMetadata> {
throw new Error('TODO implement');
}
}