remove nft vote endpoint

This commit is contained in:
Asim Aslam
2021-12-08 14:22:33 +00:00
parent 0a74e37b3d
commit af45cd2894

View File

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