Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 442 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 442 Bytes

nexus-notify

This is was a Nexus 5 notifier written in Go. It'll email you when the Nexus 5 is in the Play Store.

If you'd like to use this, get a Mandrill API key and add a vars.go file that looks like this:

package main

const (
	ApiKey       string = "Mandrill API key"
	EmailAddress string = "destination_email"
	EmailName    string = "destination_name"
)

Then go build and run the binary as you please.