1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-07-20 03:57:29 +02:00
ntfy/examples/subscribe-go/main.go
2021-12-03 20:38:21 -05:00

20 lines
282 B
Go

package main
import (
"bufio"
"log"
"net/http"
)
func main() {
resp, err := http.Get("https://ntfy.sh/phil_alerts/json")
if err != nil {
log.Fatal(err)
}
defer resp.Body.Close()
scanner := bufio.NewScanner(resp.Body)
for scanner.Scan() {
println(scanner.Text())
}
}