Commit from m3o/m3o action

This commit is contained in:
m3o-actions
2021-11-26 12:50:18 +00:00
parent 81c307da6f
commit 1232a8904f
22 changed files with 806 additions and 742 deletions

View File

@@ -0,0 +1,18 @@
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)
}