mirror of
https://github.com/seerr-team/seerr.git
synced 2026-02-26 20:27:13 -05:00
9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
import { existsSync } from 'fs';
|
|
import path from 'path';
|
|
|
|
const DOCKER_PATH = path.join(__dirname, '../../config/DOCKER');
|
|
|
|
export const appDataStatus = (): boolean => {
|
|
return !existsSync(DOCKER_PATH);
|
|
};
|