aboutsummaryrefslogtreecommitdiff
path: root/middleware/file/notify.go
blob: cb61cc0509e27f641aa2f03b079e406e3be857a2 (plain) (blame)
1
2
3
4
5
6
7
8
package file

// Notify sends notifies to the configured remotes. It will try up to three times
// before giving up on a specific remote.
func Notify(remotes []string) error {
	return nil

}