From 9902fdd365b058dc294b37b482e1816ecaaea9a7 Mon Sep 17 00:00:00 2001 From: Ray <18078751+rayjanoka@users.noreply.github.com> Date: Fri, 16 Dec 2022 13:36:13 -0700 Subject: [PATCH] removing localhost default endpoints --- config.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.go b/config.go index 8375bcc..7ac77d7 100644 --- a/config.go +++ b/config.go @@ -11,7 +11,7 @@ type Config struct { Src struct { AccessKey string `fig:"accessKey"` Bucket string `fig:"bucket"` - Endpoint string `fig:"endpoint" default:"localhost:9000"` + Endpoint string `fig:"endpoint"` GoogleCredentials string `fig:"googleCredentials"` Name string `fig:"name" default:"destination"` SecretKey string `fig:"secretKey"` @@ -21,7 +21,7 @@ type Config struct { Dest struct { AccessKey string `fig:"accessKey"` Bucket string `fig:"bucket"` - Endpoint string `fig:"endpoint" default:"localhost:9000"` + Endpoint string `fig:"endpoint"` GoogleCredentials string `fig:"googleCredentials"` Name string `fig:"name" default:"source"` PartSize uint64 `fig:"partSize" default:"16"`