Files
m3o-go/examples/lists/create/createAList/main.go
2022-02-20 12:02:04 +00:00

16 lines
244 B
Go
Executable File

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)
}