mirror of
https://github.com/kevin-DL/m3o-go.git
synced 2026-01-12 02:45:11 +00:00
578 B
Executable File
578 B
Executable File
Search
An m3o.com API. For example usage see m3o.com/Search/api.
Endpoints:
Vote
Vote to have the Search api launched faster!
https://m3o.com/search/api#Vote
package example
import(
"fmt"
"os"
"go.m3o.com/search"
)
// Vote to have the Search api launched faster!
func VoteForTheApi() {
searchService := search.NewSearchService(os.Getenv("M3O_API_TOKEN"))
rsp, err := searchService.Vote(&search.VoteRequest{
Message: "Launch it!",
})
fmt.Println(rsp, err)
}