Skip to content

dustin/go-nma

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notify My Android on the Go

This is a go client for Notify my Android.

With this, you can send simple notifications directly to your phone and other android devices quickly and easily.

Installation

go get github.com/dustin/go-nma

Usage

package main

import "github.com/dustin/go-nma"

func main() {
    n := nma.New("yourapikey")
    e := nma.Notification{
      Event: "It worked!",
      Description: "I was able to send a message!",
      Priority: 1,
    }

	if err := n.Notify(&e); err != nil {
		fmt.Fprintf(os.Stderr, "Error sending message:  %v\n", err)
		os.Exit(1)
	}
}

About

A go interface to NotifyMyAndroid

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages