9 lines
94 B
Go
9 lines
94 B
Go
package handlers
|
|
|
|
import (
|
|
"github.com/jmoiron/sqlx"
|
|
)
|
|
|
|
type Handler struct {
|
|
DB *sqlx.DB
|
|
}
|