mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2025-12-22 11:19:46 +00:00
13 lines
404 B
TypeScript
13 lines
404 B
TypeScript
// Copyright 2018 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { join } from 'node:path';
|
|
|
|
import type { ExceptionType } from './types.std.js';
|
|
import { loadJSON, writeExceptions } from './util.node.js';
|
|
|
|
const exceptionsPath = join(__dirname, 'exceptions.json');
|
|
const exceptions: Array<ExceptionType> = loadJSON(exceptionsPath);
|
|
|
|
writeExceptions(exceptionsPath, exceptions);
|