-
-
Notifications
You must be signed in to change notification settings - Fork 325
/
hives.go
77 lines (75 loc) · 3.26 KB
/
hives.go
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/*
* Copyright (C) 2014-2017 Christian Muehlhaeuser
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Authors:
* Christian Muehlhaeuser <[email protected]>
*/
package main
import (
_ "github.com/muesli/beehive/bees/alertoverbee"
_ "github.com/muesli/beehive/bees/anelpowerctrlbee"
_ "github.com/muesli/beehive/bees/cfddnsbee"
_ "github.com/muesli/beehive/bees/cleverbotbee"
_ "github.com/muesli/beehive/bees/cricketbee"
_ "github.com/muesli/beehive/bees/cronbee"
_ "github.com/muesli/beehive/bees/devrantbee"
_ "github.com/muesli/beehive/bees/discordbee"
_ "github.com/muesli/beehive/bees/efabee"
_ "github.com/muesli/beehive/bees/emailbee"
_ "github.com/muesli/beehive/bees/emailserverbee"
_ "github.com/muesli/beehive/bees/execbee"
_ "github.com/muesli/beehive/bees/facebookbee"
_ "github.com/muesli/beehive/bees/fsnotifybee"
_ "github.com/muesli/beehive/bees/githubbee"
_ "github.com/muesli/beehive/bees/gitterbee"
_ "github.com/muesli/beehive/bees/gotifybee"
_ "github.com/muesli/beehive/bees/horizonboxbee"
_ "github.com/muesli/beehive/bees/htmlextractbee"
_ "github.com/muesli/beehive/bees/httpbee"
_ "github.com/muesli/beehive/bees/huebee"
_ "github.com/muesli/beehive/bees/instapaperbee"
_ "github.com/muesli/beehive/bees/ipifybee"
_ "github.com/muesli/beehive/bees/ircbee"
_ "github.com/muesli/beehive/bees/jabberbee"
_ "github.com/muesli/beehive/bees/jenkinsbee"
_ "github.com/muesli/beehive/bees/jirabee"
_ "github.com/muesli/beehive/bees/mastodonbee"
_ "github.com/muesli/beehive/bees/mixcloudbee"
_ "github.com/muesli/beehive/bees/mumblebee"
_ "github.com/muesli/beehive/bees/nagiosbee"
_ "github.com/muesli/beehive/bees/openweathermapbee"
_ "github.com/muesli/beehive/bees/pastebinbee"
_ "github.com/muesli/beehive/bees/prometheusbee"
_ "github.com/muesli/beehive/bees/pushoverbee"
_ "github.com/muesli/beehive/bees/redisbee"
_ "github.com/muesli/beehive/bees/rocketchatbee"
_ "github.com/muesli/beehive/bees/rssbee"
_ "github.com/muesli/beehive/bees/s3bee"
_ "github.com/muesli/beehive/bees/simplepushbee"
_ "github.com/muesli/beehive/bees/slackbee"
_ "github.com/muesli/beehive/bees/socketbee"
_ "github.com/muesli/beehive/bees/spaceapibee"
_ "github.com/muesli/beehive/bees/sunbee"
_ "github.com/muesli/beehive/bees/telegrambee"
_ "github.com/muesli/beehive/bees/timebee"
_ "github.com/muesli/beehive/bees/transmissionbee"
_ "github.com/muesli/beehive/bees/travisbee"
_ "github.com/muesli/beehive/bees/tumblrbee"
_ "github.com/muesli/beehive/bees/twiliobee"
_ "github.com/muesli/beehive/bees/twitchbee"
_ "github.com/muesli/beehive/bees/twitterbee"
_ "github.com/muesli/beehive/bees/webbee"
)