Initial commit

This commit is contained in:
kandrusyak
2023-06-23 02:18:00 +03:00
commit 688ae61bc6
12 changed files with 297 additions and 0 deletions

11
handler/handler.go Normal file
View File

@@ -0,0 +1,11 @@
package handler
import "gorm.io/gorm"
type Handler struct {
DB *gorm.DB
}
const (
Key = "secret"
)