diff options
| author | Adam Mathes <adam@adammathes.com> | 2026-02-15 08:49:46 -0800 |
|---|---|---|
| committer | Adam Mathes <adam@adammathes.com> | 2026-02-15 08:49:46 -0800 |
| commit | 038cdd6ae395eb4249ab1758d319f847beeb4549 (patch) | |
| tree | 9e02389c290658196067f7e369bcc2cea08ef43b /internal | |
| parent | 9e7946ce0474fddb8901df27e5c3646fd87af67c (diff) | |
| download | neko-038cdd6ae395eb4249ab1758d319f847beeb4549.tar.gz neko-038cdd6ae395eb4249ab1758d319f847beeb4549.tar.bz2 neko-038cdd6ae395eb4249ab1758d319f847beeb4549.zip | |
Commit ticket updates and remaining backend lint fixes
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/vlog/vlog.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/internal/vlog/vlog.go b/internal/vlog/vlog.go index ab48478..2cd30a5 100644 --- a/internal/vlog/vlog.go +++ b/internal/vlog/vlog.go @@ -8,7 +8,7 @@ import ( var VERBOSE bool func init() { - VERBOSE=false + VERBOSE = false } func Printf(format string, v ...interface{}) { @@ -22,4 +22,3 @@ func Println(v ...interface{}) { fmt.Println(v...) } } - |
