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.
10 lines
246 B
10 lines
246 B
|
14 years ago
|
{-# OPTIONS_HADDOCK hide #-}
|
||
|
14 years ago
|
|
||
|
14 years ago
|
module Network.Xmpp.Presence where
|
||
|
14 years ago
|
|
||
|
|
import Data.Text(Text)
|
||
|
14 years ago
|
import Network.Xmpp.Types
|
||
|
14 years ago
|
|
||
|
14 years ago
|
-- | Add a recipient to a presence notification.
|
||
|
14 years ago
|
presTo :: Presence -> JID -> Presence
|
||
|
|
presTo pres to = pres{presenceTo = Just to}
|