mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 11:15:12 +00:00
Commit from GitHub Actions (Generate Clients & Examples)
This commit is contained in:
14
examples/stream/createChannel/node/createChannel.js
Executable file
14
examples/stream/createChannel/node/createChannel.js
Executable file
@@ -0,0 +1,14 @@
|
||||
const { StreamService } = require("m3o/stream");
|
||||
|
||||
// Create a channel with a given name and description. Channels are created automatically but
|
||||
// this allows you to specify a description that's persisted for the lifetime of the channel.
|
||||
async function createChannel() {
|
||||
let streamService = new StreamService(process.env.MICRO_API_TOKEN);
|
||||
let rsp = await streamService.createChannel({
|
||||
description: "The channel for all things",
|
||||
name: "general",
|
||||
});
|
||||
console.log(rsp);
|
||||
}
|
||||
|
||||
createChannel();
|
||||
Reference in New Issue
Block a user