| 22 | import { randomUUID } from 'crypto'; |
| 23 | |
| 24 | interface BucketConfig { |
| 25 | endpoint: string; |
| 26 | access_key_id: string; |
| 27 | secret_access_key: string; |
| 28 | bucket_name: string; |
| 29 | region?: string; |
| 30 | public_url?: string; |
| 31 | } |
| 32 | |
| 33 | interface Config { |
| 34 | default?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected