11 lines
246 B
TypeScript
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,
|
|
}
|
|
}
|