vgram
vgram copied to clipboard
Telegram Bot library written in V.
The problem can be reproduced with the example code too. If I copy-paste example code to example.v file, then go to the console and run v run example.v - a...
https://github.com/dariotarantini/vgram/blob/32429ae3e2eb62d67d53f4678e6f1e348eb44144/types.v#L805-L806 From https://core.telegram.org/bots/api#sending-files: > ### Sending files > There are three ways to send files (photos, stickers, audio, media, etc.): > > 1. If the file is already stored somewhere...
According to [doc](https://core.telegram.org/bots/api), IDs and file sizes are at most 52 bits. > This number may have more than 32 significant bits and some programming languages may have difficulty/silent defects...
dariotarantini.vgram is missing a manifest, please consider adding a v.mod file with the modules metadata
```v methods.v:104:1: warning: `[attr]` has been deprecated, use `@[attr]` instead 102 | 103 | //GetUpdates Use this method to receive incoming updates using long polling (wiki). An Array of Update...