export async function commitFileToS3_v3()

in src/libs/s3.ts [38:45]


export async function commitFileToS3_v3(
    stage: string,
    filePathKey: string,
    file: string,
) {
    const client = new S3Client({ region: 'eu-west-1' });
    await commitFileToS3_v1(client, stage, filePathKey, file);
}