Files
heygermany-e2e-mrg4m7dd/packages/functions/src/content-path.ts
e2e 6c231d1d36
Some checks failed
Main / Setup and Test (push) Has been cancelled
Main / Build Website (push) Has been cancelled
chore: heygermany customer project
2026-07-11 10:52:27 +02:00

11 lines
246 B
TypeScript

import type { BucketKeyArgs } from '@pikku/core/services'
export const DEFAULT_CONTENT_BUCKET = 'default'
export const toBucketKey = (filePath: string): BucketKeyArgs => {
return {
bucket: DEFAULT_CONTENT_BUCKET,
key: filePath,
}
}