From bcb33d880e0f2e35bdae3855c3964892737f2f17 Mon Sep 17 00:00:00 2001 From: Evan Phoenix Date: Mon, 18 May 2015 11:54:27 -0700 Subject: [PATCH] Enable pg and mysql by default --- plugins/all/all.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/all/all.go b/plugins/all/all.go index a8b345954..9cf3cd191 100644 --- a/plugins/all/all.go +++ b/plugins/all/all.go @@ -1,6 +1,8 @@ package all import ( + _ "github.com/influxdb/tivan/plugins/mysql" + _ "github.com/influxdb/tivan/plugins/postgresql" _ "github.com/influxdb/tivan/plugins/redis" _ "github.com/influxdb/tivan/plugins/system" )