This commit is contained in:
Unknown 2014-09-16 13:34:09 -04:00
parent 62f21ff3ed
commit ebb4f1b78c
2 changed files with 14 additions and 4 deletions

View file

@ -10,6 +10,7 @@ import (
"os/exec"
"path"
"path/filepath"
"runtime"
"strings"
"time"
@ -98,12 +99,14 @@ var (
CustomPath string // Custom directory path.
ProdMode bool
RunUser string
IsWindows bool
// I18n settings.
Langs, Names []string
)
func init() {
IsWindows = runtime.GOOS == "windows"
log.NewLogger(0, "console", `{"level": 0}`)
}