From 43cc4d6872bd74563f356912fbdded636021791d Mon Sep 17 00:00:00 2001 From: Aravind Shankar Date: Wed, 11 Jul 2018 14:39:57 +0530 Subject: [PATCH] close #102, unexport ParsedEndpoint in config --- cli/cli.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cli.go b/cli/cli.go index 1b852e3146a89..941d62a2590c6 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -52,7 +52,7 @@ type HasuraGraphQLConfig struct { // AccessKey (optional) required to query the endpoint AccessKey string `json:"access_key,omitempty"` - ParsedEndpoint *url.URL + ParsedEndpoint *url.URL `json:"-"` } // ParseEndpoint ensures the endpoint is valid.