Advertisement
Guest User

Untitled

a guest
May 24th, 2019
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (async function() {
  2.             let tlgMsg = new models.TelegramMessage();
  3.             tlgMsg.first_name = fname;
  4.             tlgMsg.last_name = lname;
  5.             tlgMsg.username = uname;
  6.             tlgMsg.chatId = chatid;
  7.             tlgMsg.date = moment.unix(message.date).toDate();
  8.             tlgMsg.messageObject = message;
  9.             await tlgMsg.save();
  10.         })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement