Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2022-02-25 13:12:07 +00:00
parent b6293c699c
commit d935baa7b6
25 changed files with 1326 additions and 1178 deletions

View File

@@ -0,0 +1,17 @@
package main
import (
"fmt"
"os"
"go.m3o.com/nft"
)
//
func main() {
nftService := nft.NewNftService(os.Getenv("M3O_API_TOKEN"))
rsp, err := nftService.Collection(&nft.CollectionRequest{
Slug: "doodles-official",
})
fmt.Println(rsp, err)
}