diff options
| author | Roman Smrž <roman.smrz@seznam.cz> | 2026-01-12 21:05:50 +0100 |
|---|---|---|
| committer | Roman Smrž <roman.smrz@seznam.cz> | 2026-01-13 21:02:18 +0100 |
| commit | d6fe4ed34688940b3d6bc45d21022d3740b06996 (patch) | |
| tree | eadb149e9965e4b58d8ec2b1cc3408fa21478d02 /main/Main.hs | |
| parent | ffb54814b5a9e5e4756e669589652118a3e31edf (diff) | |
Diffstat (limited to 'main/Main.hs')
| -rw-r--r-- | main/Main.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/main/Main.hs b/main/Main.hs index a876d7b..c1f30f2 100644 --- a/main/Main.hs +++ b/main/Main.hs @@ -37,12 +37,13 @@ import System.Exit import System.IO import Erebos.Attach -import Erebos.Contact import Erebos.Chatroom +import Erebos.Contact import Erebos.Conversation import Erebos.DirectMessage import Erebos.Discovery import Erebos.Identity +import Erebos.Invite import Erebos.Network import Erebos.Object import Erebos.PubKey @@ -111,6 +112,8 @@ availableServices = True "direct messages" , ServiceOption "discovery" (someService @DiscoveryService Proxy) True "peer discovery" + , ServiceOption "invite" (someService @InviteService Proxy) + True "invites handling" ] options :: [ OptDescr (Options -> Writer [ String ] Options) ] |