10 lines
83 B
Go
10 lines
83 B
Go
package handlers
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
type Handler struct {
|
|
DB *gorm.DB
|
|
}
|