remove vote endpoint

This commit is contained in:
Asim Aslam
2021-12-15 11:17:17 +00:00
parent 669c89d2ce
commit 56f6f1b226

View File

@@ -1,17 +0,0 @@
package main
import (
"fmt"
"os"
"go.m3o.com/app"
)
// Vote to have the App api launched faster!
func main() {
appService := app.NewAppService(os.Getenv("M3O_API_TOKEN"))
rsp, err := appService.Vote(&app.VoteRequest{
Message: "Launch it!",
})
fmt.Println(rsp, err)
}