Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2021-11-26 12:34:00 +00:00
parent 8e682f8359
commit 87630a4bfd
19 changed files with 838 additions and 748 deletions

View File

@@ -0,0 +1,18 @@
package main
import (
"fmt"
"os"
"go.m3o.com/nft"
)
// Vote to have the NFT api launched faster!
func main() {
nftService := nft.NewNftService(os.Getenv("M3O_API_TOKEN"))
rsp, err := nftService.Vote(&nft.VoteRequest{
Message: "Launch it!",
})
fmt.Println(rsp, err)
}