mirror of https://github.com/statping/statping
13 lines
312 B
Go
13 lines
312 B
Go
package core
|
|
|
|
import "github.com/hunterlong/statping/core/integrations"
|
|
|
|
// AddIntegrations will attach all the integrations into the system
|
|
func AddIntegrations() error {
|
|
return integrations.AddIntegrations(
|
|
integrations.CsvIntegrator,
|
|
integrations.TraefikIntegrator,
|
|
integrations.DockerIntegrator,
|
|
)
|
|
}
|