diff --git a/src/minio.ts b/src/minio.ts new file mode 100644 index 0000000..bf600e3 --- /dev/null +++ b/src/minio.ts @@ -0,0 +1,11 @@ +import * as Minio from 'minio'; + +const minioClient = new Minio.Client({ + endPoint: 'localhost', + port: 9000, + useSSL: false, + accessKey: "bCNKDBVU1CJz9XkDqhB0", + secretKey: "gnrpzGimjKn3WQmxmvG5IRDpcMZZixDaXjFy9mtz" +}); + +export { minioClient };