6 lines
133 B
TypeScript

import { decrypt } from '../crypto/cipher';
export function kongDecrypt(encrypted: string): string {
return decrypt(encrypted);
}