diff options
Diffstat (limited to 'middleware/file/notify.go')
-rw-r--r-- | middleware/file/notify.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/middleware/file/notify.go b/middleware/file/notify.go new file mode 100644 index 000000000..cb61cc050 --- /dev/null +++ b/middleware/file/notify.go @@ -0,0 +1,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 + +} |