Add supervisor with backoff restarts

This commit is contained in:
2026-08-20 19:51:17 +03:00
parent 9c355adf47
commit f8d6a844e4
6 changed files with 196 additions and 6 deletions
+9 -1
View File
@@ -64,6 +64,7 @@ library
, HomeAssistant.Runtime
, HomeAssistant.Runtime.Bus
, HomeAssistant.Runtime.Connection
, HomeAssistant.Runtime.Supervisor
-- Modules included in this library but not exported.
-- other-modules:
@@ -83,6 +84,7 @@ library
, time
, stm
, async
, annotated-exception
-- Directories containing source files.
hs-source-dirs: src
@@ -125,6 +127,8 @@ test-suite home-assistant-controller-test
other-modules: BusSpec
, ConnectionSpec
, RuntimeSpec
, SupervisorSpec
, BackoffProp
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
@@ -146,4 +150,8 @@ test-suite home-assistant-controller-test
stm,
aeson,
text,
async
async,
hedgehog,
hspec-hedgehog,
annotated-exception,
time