package netboxgo type NetBox struct { RootURL string Token string InsecureSkipVerify bool } func (n *NetBox) New(root, token string, TlsSkipVerify bool) { n.RootURL = root n.Token = token n.InsecureSkipVerify = TlsSkipVerify }