mirror of
https://github.com/imgproxy/imgproxy.git
synced 2025-03-22 20:21:28 +02:00
17 lines
329 B
Go
17 lines
329 B
Go
package main
|
|
|
|
import . "github.com/visionmedia/go-debug"
|
|
import "time"
|
|
|
|
var debug = Debug("single")
|
|
|
|
func main() {
|
|
for {
|
|
debug("sending mail")
|
|
debug("send email to %s", "tobi@segment.io")
|
|
debug("send email to %s", "loki@segment.io")
|
|
debug("send email to %s", "jane@segment.io")
|
|
time.Sleep(500 * time.Millisecond)
|
|
}
|
|
}
|