Files
m3o-go/examples/nft/vote/voteForTheApi/main.go
2021-11-26 12:34:00 +00:00

19 lines
280 B
Go
Executable File

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