├── .gitignore ├── LICENSE ├── README.md ├── sample ├── apiExample.dpr ├── apiExample.dproj ├── apiExample.res ├── uFrmMain.dfm └── uFrmMain.pas └── src ├── uClassMessageDTO.pas ├── uConsts.pas ├── uTelegramAPI.Interfaces.pas └── uTelegramAPI.pas /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/README.md -------------------------------------------------------------------------------- /sample/apiExample.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/sample/apiExample.dpr -------------------------------------------------------------------------------- /sample/apiExample.dproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/sample/apiExample.dproj -------------------------------------------------------------------------------- /sample/apiExample.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/sample/apiExample.res -------------------------------------------------------------------------------- /sample/uFrmMain.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/sample/uFrmMain.dfm -------------------------------------------------------------------------------- /sample/uFrmMain.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/sample/uFrmMain.pas -------------------------------------------------------------------------------- /src/uClassMessageDTO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/src/uClassMessageDTO.pas -------------------------------------------------------------------------------- /src/uConsts.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/src/uConsts.pas -------------------------------------------------------------------------------- /src/uTelegramAPI.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/src/uTelegramAPI.Interfaces.pas -------------------------------------------------------------------------------- /src/uTelegramAPI.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabrielTrigo/telegram-bot-delphi/HEAD/src/uTelegramAPI.pas --------------------------------------------------------------------------------