Squashed 'v2/' content from commit 72ef153

git-subtree-dir: v2
git-subtree-split: 72ef15359e36e42b18d9407f74c762f83eb9a099
This commit is contained in:
Travis McLane
2020-09-15 19:52:54 -05:00
commit a213e8bcd1
222 changed files with 25426 additions and 0 deletions

10
internal/app/debug.go Normal file
View File

@@ -0,0 +1,10 @@
// +build debug
package app
// Init initialises the application for a debug environment
func (a *App) Init() error {
a.debug = true
println("Initialising debug options")
return nil
}