mirror of
https://github.com/kevin-DL/m3o-go.git
synced 2026-01-12 19:05:12 +00:00
539 B
Executable File
539 B
Executable File
Nft
An m3o.com API. For example usage see m3o.com/Nft/api.
Endpoints:
Vote
Vote to have the NFT api launched faster!
package example
import(
"fmt"
"os"
"go.m3o.com/nft"
)
// Vote to have the NFT api launched faster!
func VoteForTheApi() {
nftService := nft.NewNftService(os.Getenv("M3O_API_TOKEN"))
rsp, err := nftService.Vote(&nft.VoteRequest{
Message: "Launch it!",
})
fmt.Println(rsp, err)
}