aboutsummaryrefslogtreecommitdiffstats
path: root/internal/notifier/notifiers.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/notifier/notifiers.go')
-rw-r--r--internal/notifier/notifiers.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/internal/notifier/notifiers.go b/internal/notifier/notifiers.go
new file mode 100644
index 0000000..5f6087c
--- /dev/null
+++ b/internal/notifier/notifiers.go
@@ -0,0 +1,15 @@
+package notifier
+
+import (
+ "donetick.com/core/config"
+ "donetick.com/core/internal/notifier/telegram"
+)
+
+type Notifiers []Notifier
+
+func NewNotifiers(config *config.Config) Notifiers {
+ var notifiers []Notifier
+ notifiers = append(notifiers, telegram.NewTelegramNotifier(config))
+
+ return notifiers
+}