mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
17 lines
289 B
TypeScript
17 lines
289 B
TypeScript
// major.minor.patch+build
|
|
// check mobile/pubspec.yml for current release version
|
|
|
|
export interface IServerVersion {
|
|
major: number;
|
|
minor: number;
|
|
patch: number;
|
|
build: number;
|
|
}
|
|
|
|
export const serverVersion: IServerVersion = {
|
|
major: 1,
|
|
minor: 30,
|
|
patch: 2,
|
|
build: 48,
|
|
};
|