Baphomet is the dedicated bot for nulloctet matrix
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
272 B

  1. let messageTypes = {
  2. TEXT: 'm.text',
  3. NOTICE: 'm.notice'
  4. }
  5. function createBasicMessage(body, msgtype=messageTypes.TEXT) {
  6. return {
  7. "body": body,
  8. "msgtype": msgtype
  9. }
  10. }
  11. exports.types = messageTypes;
  12. exports.createBasic = createBasicMessage;