diff options
author | Saumit Dinesan <justsaumit@protonmail.com> | 2023-11-28 22:21:37 +0530 |
---|---|---|
committer | Saumit Dinesan <justsaumit@protonmail.com> | 2023-11-28 22:21:37 +0530 |
commit | f2a259d332f744abd8b92c45765c85de3fa10753 (patch) | |
tree | b4bba239425bc37c3d5c1a64ad9712587cdecdb5 /server.go | |
parent | ec4d62de27b6f574fb23f7e56727c67a734f08a0 (diff) |
server.go : remove fmt
Diffstat (limited to 'server.go')
-rw-r--r-- | server.go | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -5,7 +5,6 @@ import ( "github.com/justsaumit/go-fis-api/handlers" "github.com/labstack/echo/v4" "log" - "fmt" "os" ) @@ -27,8 +26,6 @@ func main() { domain = "localhost" api_endpoint_url = "http://localhost:3000" } - fmt.Println("Domain: " + domain) - fmt.Println("API Endpoint URL: " + api_endpoint_url) certPath := "/etc/letsencrypt/live/" + domain + "/fullchain.pem" keyPath := "/etc/letsencrypt/live/" + domain + "/privkey.pem" |