{-# LANGUAGE DataKinds         #-}
{-# LANGUAGE DeriveGeneric     #-}
{-# LANGUAGE DeriveAnyClass    #-}
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE TypeOperators     #-}
{-# LANGUAGE TemplateHaskell   #-}

-- | This module provides Telegram Bot API
module Web.Telegram.API.Bot
  (
    module Web.Telegram.API.Bot.API
  , module Web.Telegram.API.Bot.Data
  , module Web.Telegram.API.Bot.Responses
  , module Web.Telegram.API.Bot.Requests
  ) where

import           Web.Telegram.API.Bot.API
import           Web.Telegram.API.Bot.Data
import           Web.Telegram.API.Bot.Responses
import           Web.Telegram.API.Bot.Requests