netboxgo/netbox.go
2019-09-11 09:19:24 +02:00

13 lines
173 B
Go

package nbclient
type NetBox struct {
RootURL string
Token string
}
func (n *NetBox) new(root, token string) error {
n.RootURL = root
n.Token = token
return nil
}