hoop33 / limo

A CLI for managing starred Git repositories

Home Page:https://www.gitbook.com/book/hoop33/limo/details

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Allow bad certificates

hoop33 opened this issue · comments

This should be config-based, so the user has to do this on purpose. See issue #54

Here's some sample code that may be of use:

    tr := &http.Transport{
        TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
    }
    client := &http.Client{Transport: tr}