aboutsummaryrefslogtreecommitdiffstats
path: root/internal/vlog
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-15 08:49:46 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-15 08:49:46 -0800
commit038cdd6ae395eb4249ab1758d319f847beeb4549 (patch)
tree9e02389c290658196067f7e369bcc2cea08ef43b /internal/vlog
parent9e7946ce0474fddb8901df27e5c3646fd87af67c (diff)
downloadneko-038cdd6ae395eb4249ab1758d319f847beeb4549.tar.gz
neko-038cdd6ae395eb4249ab1758d319f847beeb4549.tar.bz2
neko-038cdd6ae395eb4249ab1758d319f847beeb4549.zip
Commit ticket updates and remaining backend lint fixes
Diffstat (limited to 'internal/vlog')
-rw-r--r--internal/vlog/vlog.go3
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...)
}
}
-