From what I can see, configuration is private
private let configuration: Configuration
and I can't seem to construct my own Hyperconnectivity object like this
let config = Hyperconnectivity.Configuration(connectivityURLs: [ ])
let connectivity = Hyperconnectivity(configuration: config)
as it gives me the error 'Hyperconnectivity' initializer is inaccessible due to 'internal' protection level.
Can you give me any hints or is this a bug that can be resolved with a PR by appending public to the init?
Thanks
From what I can see, configuration is private
private let configuration: Configurationand I can't seem to construct my own
Hyperconnectivityobject like thisas it gives me the error
'Hyperconnectivity' initializer is inaccessible due to 'internal' protection level.Can you give me any hints or is this a bug that can be resolved with a PR by appending
publicto the init?Thanks