export type TStorageConfig = {
  type: 'minio' | 's3'
  accessKey: string
  secretKey: string
  endPoint: string
  port?: number
  useSSL?: boolean
  region?: string
}
