diff --git a/client/client.go b/client/client.go index 0a854c2..a10e211 100644 --- a/client/client.go +++ b/client/client.go @@ -13,10 +13,12 @@ import ( "github.com/google/uuid" ) +// Client provides the Glow interface to the Charm Cloud type Client struct { kv *kv.KV } +// NewClient creates a new Client with the default settings func NewClient() (*Client, error) { kv, err := kv.OpenWithDefaults("charm.sh.glow", "./data") if err != nil {