const pizton = new Pizton({
baseUrl: 'https://pizton.com',
token: userJwt
});
await pizton.sendMessage(channelId, {
text: ' 👋'
});
pizton.on('message.created', (m) => {
render(m);
});
const stream = await pizton.startStream({
title: '',
rtmp: true
});