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, } }