You've already forked pigallery2
mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-12-07 23:23:49 +02:00
13 lines
352 B
TypeScript
13 lines
352 B
TypeScript
import {IVersionManager} from '../interfaces/IVersionManager';
|
|
import {DataStructureVersion} from '../../../common/DataStructureVersion';
|
|
|
|
export class VersionManager implements IVersionManager {
|
|
async getDataVersion(): Promise<string> {
|
|
return DataStructureVersion.toString();
|
|
}
|
|
|
|
async updateDataVersion(): Promise<void> {
|
|
return;
|
|
}
|
|
}
|