Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2022-02-17 16:45:54 +00:00
parent 1fd3edc2c1
commit f8fea92773
32 changed files with 1686 additions and 1002 deletions

View File

@@ -0,0 +1,15 @@
package main
import (
"fmt"
"os"
"go.m3o.com/chat"
)
// Delete a chat room
func main() {
chatService := chat.NewChatService(os.Getenv("M3O_API_TOKEN"))
rsp, err := chatService.Delete(&chat.DeleteRequest{})
fmt.Println(rsp, err)
}