Commit from GitHub Actions (Generate Clients & Examples)

This commit is contained in:
asim
2021-11-03 16:07:49 +00:00
parent 5ad499c8a0
commit 072104d196
7 changed files with 63 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
curl "https://api.m3o.com/v1/stream/CreateChannel" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $MICRO_API_TOKEN" \
-d '{
"description": "The channel for all things",
"name": "general"
}'

View File

@@ -0,0 +1,19 @@
package example
import (
"fmt"
"os"
"github.com/micro/services/clients/go/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.
func CreateChannel() {
streamService := stream.NewStreamService(os.Getenv("MICRO_API_TOKEN"))
rsp, err := streamService.CreateChannel(&stream.CreateChannelRequest{
Description: "The channel for all things",
Name: "general",
})
fmt.Println(rsp, err)
}

View 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();