diff --git a/examples/nft/vote/voteForTheApi/main.go b/examples/nft/vote/voteForTheApi/main.go deleted file mode 100755 index ecb89b9..0000000 --- a/examples/nft/vote/voteForTheApi/main.go +++ /dev/null @@ -1,18 +0,0 @@ -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) - -}