mirror of
https://github.com/excaliburpartners/OmniLinkBridge
synced 2025-05-06 17:13:11 +00:00

- Restructured code to be event based with modules - Added MQTT module for Home Assistant - Added pushover notifications - Added web service API subscriptions file to persist subscriptions
9 lines
123 B
C#
9 lines
123 B
C#
namespace OmniLinkBridge.Modules
|
|
{
|
|
interface IModule
|
|
{
|
|
void Startup();
|
|
void Shutdown();
|
|
}
|
|
}
|