implementing handlers

This commit is contained in:
2025-11-18 15:51:47 +00:00
parent 32327afc70
commit f774688228
3 changed files with 51 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package handlers
import (
"gorm.io/gorm"
)
type Handler struct {
DB *gorm.DB
}