From f3960b59426a9f37b9fe635cd9c4c94fea620024 Mon Sep 17 00:00:00 2001 From: Asim Aslam Date: Thu, 9 Dec 2021 11:18:52 +0000 Subject: [PATCH] Remove space vote --- examples/space/vote/voteForTheApi/main.go | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100755 examples/space/vote/voteForTheApi/main.go diff --git a/examples/space/vote/voteForTheApi/main.go b/examples/space/vote/voteForTheApi/main.go deleted file mode 100755 index d705c81..0000000 --- a/examples/space/vote/voteForTheApi/main.go +++ /dev/null @@ -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) - -}