first commit

This commit is contained in:
“xHuPo” 2024-08-21 16:35:46 +08:00
commit 53e59ddf89
12 changed files with 558 additions and 0 deletions

9
handlers/handler.go Normal file
View file

@ -0,0 +1,9 @@
package handlers
import (
"github.com/jmoiron/sqlx"
)
type Handler struct {
DB *sqlx.DB
}