Merge remote-tracking branch 'michsior/dev' into dev

This commit is contained in:
Aaron 2017-04-16 11:35:12 -07:00
commit d9b991e487

View file

@ -1,6 +1,7 @@
package boil package boil
import ( import (
"io"
"os" "os"
"time" "time"
) )
@ -20,7 +21,7 @@ var (
var DebugMode = false var DebugMode = false
// DebugWriter is where the debug output will be sent if DebugMode is true // DebugWriter is where the debug output will be sent if DebugMode is true
var DebugWriter = os.Stdout var DebugWriter io.Writer = os.Stdout
// SetDB initializes the database handle for all template db interactions // SetDB initializes the database handle for all template db interactions
func SetDB(db Executor) { func SetDB(db Executor) {