diff options
author | T <t@tjp.lol> | 2025-08-04 15:34:23 -0600 |
---|---|---|
committer | T <t@tjp.lol> | 2025-08-04 19:49:08 -0600 |
commit | dc895cec9d8a84af89ce2501db234dff33c757e2 (patch) | |
tree | 8c961466f0769616b3a82da91f4cde4d3a881b73 /internal/commands/root.go | |
parent | 56e0af3b41742876b471332aeb943a5a2ca8dfbf (diff) |
timesheet and unified reports
Diffstat (limited to 'internal/commands/root.go')
-rw-r--r-- | internal/commands/root.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/commands/root.go b/internal/commands/root.go index 04f1203..553d0b4 100644 --- a/internal/commands/root.go +++ b/internal/commands/root.go @@ -37,7 +37,7 @@ func Execute() error { } defer func() { if db, ok := q.DBTX().(*sql.DB); ok { - db.Close() + _ = db.Close() } }() |