push-notify-0.1.0.0: Network/PushNotify/Apns.hs
-- GSoC 2013 - Communicating with mobile devices.
-- | This library defines an API for communicating with iOS powered devices, sending Push Notifications through Apple Push Notification Service.
module Network.PushNotify.Apns
(
-- * APNS Service
sendAPNS
, startAPNS
, closeAPNS
, withAPNS
, feedBackAPNS
-- * APNS Settings
, APNSConfig(..)
, APNSManager
, DeviceToken
, Env(..)
-- * APNS Messages
, APNSmessage(..)
, AlertDictionary(..)
-- * APNS Results
, APNSresult(..)
, APNSFeedBackresult(..)
) where
import Network.PushNotify.Apns.Types
import Network.PushNotify.Apns.Send