mirror of
https://github.com/kevin-DL/m3o-go.git
synced 2026-01-18 05:05:14 +00:00
17 lines
274 B
Go
Executable File
17 lines
274 B
Go
Executable File
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)
|
|
|
|
}
|