From af45cd289407b9df828a5ad48b54f50efabff5c2 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Wed, 8 Dec 2021 14:22:33 +0000 Subject: [PATCH] remove nft vote endpoint --- examples/nft/vote/voteForTheApi/main.go | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 examples/nft/vote/voteForTheApi/main.go 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) - -}