mirror of
https://github.com/kevin-DL/m3o-go.git
synced 2026-01-18 21:25:05 +00:00
Commit from m3o/m3o action
This commit is contained in:
16
examples/stream/listChannels/listChannels/main.go
Executable file
16
examples/stream/listChannels/listChannels/main.go
Executable file
@@ -0,0 +1,16 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"go.m3o.com/stream"
|
||||
)
|
||||
|
||||
// List all the active channels
|
||||
func main() {
|
||||
streamService := stream.NewStreamService(os.Getenv("M3O_API_TOKEN"))
|
||||
rsp, err := streamService.ListChannels(&stream.ListChannelsRequest{})
|
||||
fmt.Println(rsp, err)
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user