push-notify-0.1.0.0: Network/PushNotify/Mpns.hs
-- GSoC 2013 - Communicating with mobile devices.
-- | This library defines an API for communicating with WPhone powered devices, sending Push Notifications through Microsoft Push Notification Service.
module Network.PushNotify.Mpns
( -- * MPNS Service
sendMPNS
-- * MPNS Settings
, MPNSConfig(..)
, DeviceURI
-- * MPNS Messages
, MPNSType(..)
, MPNSInterval(..)
, MPNSmessage(..)
-- * MPNS Result
, MPNSresult(..)
, MPNSinfo(..)
, MPNSnotifStatus(..)
, MPNSsubStatus(..)
, MPNSconStatus(..)
) where
import Network.PushNotify.Mpns.Send
import Network.PushNotify.Mpns.Types