telegram-bot-0.5.4.0: Telegram Bot microframework for Haskell

CopyrightAlexander Krupenkin 2016
LicenseBSD3
Maintainermail@akru.me
Stabilityexperimental
Portabilitynoportable
Safe HaskellNone
LanguageHaskell2010

Web.Telegram.Bot.Types

Description

Bot types.

Synopsis

Documentation

class BotConfig a where Source #

Telegram bot config

Minimal complete definition

authToken

Methods

pollTimeout :: a -> Timeout Source #

authToken :: a -> Token Source #

BotFather authentification token

type BotT a = ReaderT (Manager, a) Source #

Telegram bot monad

type Bot a = BotT a IO Source #