Files
heygermany-e2e-mrg5ilhk/packages/functions/src/content-path.ts
e2e 40352e4179
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 11:17:38 +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,
}
}