12 lines
104 B
Go
12 lines
104 B
Go
package handler
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type Handler struct {
|
|
DB *gorm.DB
|
|
}
|
|
|
|
const (
|
|
Key = "secret"
|
|
)
|