Files
m3o-go/examples/chat/leave/leaveARoom/main.go
2022-02-17 16:45:54 +00:00

16 lines
236 B
Go
Executable File

package main
import (
"fmt"
"os"
"go.m3o.com/chat"
)
// Leave a chat room
func main() {
chatService := chat.NewChatService(os.Getenv("M3O_API_TOKEN"))
rsp, err := chatService.Leave(&chat.LeaveRequest{})
fmt.Println(rsp, err)
}