文件名称:delegram:dlang Telegram API包装器
文件大小:4KB
文件格式:ZIP
更新时间:2024-05-19 03:44:28
D
代表词 dlang Telegram API包装器 用法 import delegram; import std.stdio ; void main () { Bot b = new Bot( " BOT TOKEN " ); auto updates = b.getUpdates(); foreach (update;updates) { b.sendMessage(update.message.chat.id, " Hello there, you sent me: " ~ update.message.text); } }