Hi folks, I was wondering, how would one go about instantiating a struct that happens to have internal fields?
The struct in question is this: https://github.com/insomniacslk/dhcp/blob/master/dhcpv4/nclient4/client.go#L136
I would like to leverage the existing functions of the Client struct in my code, just initialise it in a customised way.
What is the easiest way to go about this? I'd rather avoid forking the module.