-
Notifications
You must be signed in to change notification settings - Fork 12
/
modules.go
50 lines (38 loc) · 1.61 KB
/
modules.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
//go:build test
// +build test
package main
// modules.go - blank imports for all the modules that should be compiled in.
import (
// Profiling
// _ "net/http/pprof"
// *** Included Authorizer plugins
_ "github.com/lnxjedi/gopherbot/v2/goplugins/groups"
// *** Included Go plugins, of varying quality; see also: plugin/go-*
_ "github.com/lnxjedi/gopherbot/v2/goplugins/duo"
_ "github.com/lnxjedi/gopherbot/v2/goplugins/help"
_ "github.com/lnxjedi/gopherbot/v2/goplugins/ping"
// *** Compiled-in Go Job(s); see also: jobs/go-*
_ "github.com/lnxjedi/gopherbot/v2/gojobs/go-bootstrap"
// *** Included Go tasks external to the main engine
_ "github.com/lnxjedi/gopherbot/v2/gotasks/fail-report"
_ "github.com/lnxjedi/gopherbot/v2/gotasks/git-command"
_ "github.com/lnxjedi/gopherbot/v2/gotasks/ssh-agent"
_ "github.com/lnxjedi/gopherbot/v2/gotasks/ssh-git-helper"
_ "github.com/lnxjedi/gopherbot/v2/gotasks/update-report"
// *** Default Slack connector
_ "github.com/lnxjedi/gopherbot/v2/connectors/slack"
// *** Default file history
_ "github.com/lnxjedi/gopherbot/v2/history/file"
// *** A fantastic brain
_ "github.com/lnxjedi/gopherbot/v2/brains/dynamodb"
)
/* Uncomment under Profiling above to enable profiling. This inflates
the binary when enabled, but if the robot ever stops responding for any
reason, it's handy for getting a dump of all goroutines. Example usage:
$ go tool pprof http://localhost:8888/debug/pprof/goroutine
...
Entering interactive mode (type "help" for commands, "o" for options)
(pprof) list lnxjedi
Total: 11
ROUTINE ======================== github.com/lnxjedi/gopherbot/v2/bot...
*/