Metrios/modules/hello_world/index.js

29 lines
634 B
JavaScript
Raw Normal View History

2021-05-08 22:51:23 +00:00
let reply = {
status: "success",
action: "reply",
format: "embed",
message: "Testing",
profile: {
color: 0x0099f,
title: "Testing embed",
url: undefined,
author: undefined,
description: "Description of the testing embed",
thumbnail: undefined,
fields: [
{
name: "Field 1",
value: "Hello there"
}
],
image: undefined,
timestamp: undefined,
footer: {
text: "Footer text",
icon_url: undefined
}
}
};
2021-05-08 23:40:54 +00:00
2021-05-08 22:51:23 +00:00
console.log(JSON.stringify(reply));