Remove space vote

This commit is contained in:
Asim Aslam
2021-12-09 11:18:52 +00:00
parent 14bf65c01b
commit f3960b5942

View File

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