Merge remote-tracking branch 'michsior/dev' into dev
This commit is contained in:
commit
d9b991e487
1 changed files with 2 additions and 1 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue