├── .gitignore ├── .travis.yml ├── Changes ├── INSTALL.SKIP ├── LICENSE ├── MANIFEST.SKIP ├── Makefile.PL ├── README.md ├── gen_doc ├── lib └── WWW │ └── Telegram │ └── BotAPI.pm └── t ├── 00-basic.t ├── 01-api-requests.t ├── 02-exceptions.t └── pod.t /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/Changes -------------------------------------------------------------------------------- /INSTALL.SKIP: -------------------------------------------------------------------------------- 1 | gen_doc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/MANIFEST.SKIP -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/Makefile.PL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/README.md -------------------------------------------------------------------------------- /gen_doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/gen_doc -------------------------------------------------------------------------------- /lib/WWW/Telegram/BotAPI.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/lib/WWW/Telegram/BotAPI.pm -------------------------------------------------------------------------------- /t/00-basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/t/00-basic.t -------------------------------------------------------------------------------- /t/01-api-requests.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/t/01-api-requests.t -------------------------------------------------------------------------------- /t/02-exceptions.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/t/02-exceptions.t -------------------------------------------------------------------------------- /t/pod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Robertof/perl-www-telegram-botapi/HEAD/t/pod.t --------------------------------------------------------------------------------