11 lines
175 B
JavaScript
11 lines
175 B
JavaScript
|
var botui = new BotUI('hello-world');
|
||
|
|
||
|
botui.message.add({
|
||
|
content: 'Hello World from bot!'
|
||
|
});
|
||
|
|
||
|
botui.message.add({
|
||
|
human: true,
|
||
|
content: 'Hello World from human!'
|
||
|
});
|