export async function putData()

in packages/app/src/s3.ts [4:17]


export async function putData(
	s3: S3,
	bucket: string,
	key: string,
	data: string,
): Promise<void> {
	const command = new PutObjectCommand({
		Bucket: bucket,
		Key: key,
		Body: data,
		ContentType: 'application/json; charset=utf-8',
	});
	await s3.send(command);
}