mirror of
https://github.com/kevin-DL/m3o-go.git
synced 2026-01-11 10:34:27 +00:00
19 lines
311 B
Go
Executable File
19 lines
311 B
Go
Executable File
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"go.m3o.com/chat"
|
|
)
|
|
|
|
// Create a new chat room
|
|
func main() {
|
|
chatService := chat.NewChatService(os.Getenv("M3O_API_TOKEN"))
|
|
rsp, err := chatService.Create(&chat.CreateRequest{
|
|
Description: "The general chat room",
|
|
Name: "general",
|
|
})
|
|
fmt.Println(rsp, err)
|
|
}
|