Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2022-02-20 12:02:04 +00:00
parent c5749cbf5c
commit c41627014b
31 changed files with 1937 additions and 1472 deletions

View File

@@ -0,0 +1,15 @@
package main
import (
"fmt"
"os"
"go.m3o.com/lists"
)
// Create a new list
func main() {
listsService := lists.NewListsService(os.Getenv("M3O_API_TOKEN"))
rsp, err := listsService.Create(&lists.CreateRequest{})
fmt.Println(rsp, err)
}