ntfy-playground/pub.go

15 lines
198 B
Go

//go:build ignore
// +build ignore
package main
import (
"net/http"
"strings"
)
func main() {
http.Post("https://ntfy.sh/farts", "text/plain",
strings.NewReader("Backup successful 😀"))
}