fix (backend): remove unused export in migration

This commit is contained in:
naskya 2024-07-27 17:56:42 +09:00
parent 5a74760252
commit 5cae588c74
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C

View file

@ -8,7 +8,7 @@ import * as util from "node:util";
const generateKeyPair = util.promisify(crypto.generateKeyPair);
export async function genRsaKeyPair(modulusLength = 2048) {
async function genRsaKeyPair(modulusLength = 2048) {
return await generateKeyPair("rsa", {
modulusLength,
publicKeyEncoding: {