The {PluginInitializer} is a method which must be the default export for every homebridge plugin.
It is called once the plugin is loaded from disk.
PluginInitializer(api): void | Promise<void>
When the initializer is called the plugin must use the provided api instance and call the appropriate
register methods - API.registerAccessory or API.registerPlatform - in order to
correctly register for the following startup sequence.
The {PluginInitializer} is a method which must be the default export for every homebridge plugin. It is called once the plugin is loaded from disk.