10 lines
305 B
TypeScript
10 lines
305 B
TypeScript
import { Client } from "minio";
|
|
import { ENV } from "../config/env";
|
|
|
|
export const minioClient = new Client({
|
|
endPoint: ENV.MINIO_ENDPOINT!.replace("http://", "").replace("https://", ""),
|
|
port: ENV.MINIO_PORT,
|
|
useSSL: false,
|
|
accessKey: ENV.MINIO_ACCESS_KEY,
|
|
secretKey: ENV.MINIO_SECRET_KEY,
|
|
});
|