You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
{-# OPTIONS_HADDOCK hide #-} |
|
|
|
module Network.Xmpp.Presence where |
|
|
|
import Data.Text(Text) |
|
import Network.Xmpp.Types |
|
|
|
-- | Add a recipient to a presence notification. |
|
presTo :: Presence -> JID -> Presence |
|
presTo pres to = pres{presenceTo = Just to} |