1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
package router
import (
"github.com/nicholas-fedor/shoutrrr/pkg/services/bark"
"github.com/nicholas-fedor/shoutrrr/pkg/services/discord"
"github.com/nicholas-fedor/shoutrrr/pkg/services/generic"
"github.com/nicholas-fedor/shoutrrr/pkg/services/googlechat"
"github.com/nicholas-fedor/shoutrrr/pkg/services/gotify"
"github.com/nicholas-fedor/shoutrrr/pkg/services/ifttt"
"github.com/nicholas-fedor/shoutrrr/pkg/services/join"
"github.com/nicholas-fedor/shoutrrr/pkg/services/lark"
"github.com/nicholas-fedor/shoutrrr/pkg/services/logger"
"github.com/nicholas-fedor/shoutrrr/pkg/services/matrix"
"github.com/nicholas-fedor/shoutrrr/pkg/services/mattermost"
"github.com/nicholas-fedor/shoutrrr/pkg/services/ntfy"
"github.com/nicholas-fedor/shoutrrr/pkg/services/opsgenie"
"github.com/nicholas-fedor/shoutrrr/pkg/services/pushbullet"
"github.com/nicholas-fedor/shoutrrr/pkg/services/pushover"
"github.com/nicholas-fedor/shoutrrr/pkg/services/rocketchat"
"github.com/nicholas-fedor/shoutrrr/pkg/services/slack"
"github.com/nicholas-fedor/shoutrrr/pkg/services/smtp"
"github.com/nicholas-fedor/shoutrrr/pkg/services/teams"
"github.com/nicholas-fedor/shoutrrr/pkg/services/telegram"
"github.com/nicholas-fedor/shoutrrr/pkg/services/zulip"
"github.com/nicholas-fedor/shoutrrr/pkg/types"
)
var serviceMap = map[string]func() types.Service{
"bark": func() types.Service { return &bark.Service{} },
"discord": func() types.Service { return &discord.Service{} },
"generic": func() types.Service { return &generic.Service{} },
"gotify": func() types.Service { return &gotify.Service{} },
"googlechat": func() types.Service { return &googlechat.Service{} },
"hangouts": func() types.Service { return &googlechat.Service{} },
"ifttt": func() types.Service { return &ifttt.Service{} },
"lark": func() types.Service { return &lark.Service{} },
"join": func() types.Service { return &join.Service{} },
"logger": func() types.Service { return &logger.Service{} },
"matrix": func() types.Service { return &matrix.Service{} },
"mattermost": func() types.Service { return &mattermost.Service{} },
"ntfy": func() types.Service { return &ntfy.Service{} },
"opsgenie": func() types.Service { return &opsgenie.Service{} },
"pushbullet": func() types.Service { return &pushbullet.Service{} },
"pushover": func() types.Service { return &pushover.Service{} },
"rocketchat": func() types.Service { return &rocketchat.Service{} },
"slack": func() types.Service { return &slack.Service{} },
"smtp": func() types.Service { return &smtp.Service{} },
"teams": func() types.Service { return &teams.Service{} },
"telegram": func() types.Service { return &telegram.Service{} },
"zulip": func() types.Service { return &zulip.Service{} },
}
|