diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2025-02-22 20:58:04 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2025-02-25 21:03:49 +0100 |
commit | 8a5898cc06d54c30679678eb204725852786ee84 (patch) | |
tree | c454a854348af64e08a7a232d5ecac2a61da6092 /src/Erebos/Service.hs | |
parent | 1f6eb330e9fd9f0004dec4783496d36520dbd2a3 (diff) |
ICE config for each discovery peer
Diffstat (limited to 'src/Erebos/Service.hs')
-rw-r--r-- | src/Erebos/Service.hs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/Erebos/Service.hs b/src/Erebos/Service.hs index f8428d1..d1943e1 100644 --- a/src/Erebos/Service.hs +++ b/src/Erebos/Service.hs @@ -37,7 +37,13 @@ import {-# SOURCE #-} Erebos.Network import Erebos.State import Erebos.Storage -class (Typeable s, Storable s, Typeable (ServiceState s), Typeable (ServiceGlobalState s)) => Service s where +class ( + Typeable s, Storable s, + Typeable (ServiceAttributes s), + Typeable (ServiceState s), + Typeable (ServiceGlobalState s) + ) => Service s where + serviceID :: proxy s -> ServiceID serviceHandler :: Stored s -> ServiceHandler s () |