aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/db
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.com>2025-10-12 23:30:08 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.com>2025-10-12 23:30:08 +0530
commit327a32f563394f92313e4a751515d69d90f4e7f5 (patch)
tree9b49fd41ac852fa459b623f7fbe7c79aaac24418 /db
parent029fe2c7a3532bc3bf435f257cdade240c8f3568 (diff)
formatted code
Diffstat (limited to 'db')
-rw-r--r--db/db.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/db.go b/db/db.go
index 1d64bf7..65f56e3 100644
--- a/db/db.go
+++ b/db/db.go
@@ -18,11 +18,11 @@
package db
import (
- "gorm.io/gorm"
- "gorm.io/driver/mysql"
+ "fmt"
"github.com/spf13/viper"
+ "gorm.io/driver/mysql"
+ "gorm.io/gorm"
"log"
- "fmt"
)
var DB *gorm.DB