/* * Copyright 2026 Oleg Borodin */ package gcrcli type Client struct { skipTLSVerify bool } func NewClient(skipTLSVerify bool) *Client { return &Client{ skipTLSVerify: skipTLSVerify, } }