mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
38 lines
667 B
Go
38 lines
667 B
Go
package gencode_handler
|
|
|
|
import (
|
|
"github.com/xinliangnote/go-gin-api/internal/pkg/cache"
|
|
"github.com/xinliangnote/go-gin-api/internal/pkg/core"
|
|
"github.com/xinliangnote/go-gin-api/internal/pkg/db"
|
|
|
|
"go.uber.org/zap"
|
|
)
|
|
|
|
var _ Handler = (*handler)(nil)
|
|
|
|
type Handler interface {
|
|
i()
|
|
|
|
HandlerView() core.HandlerFunc
|
|
HandlerExecute() core.HandlerFunc
|
|
|
|
GormView() core.HandlerFunc
|
|
GormExecute() core.HandlerFunc
|
|
}
|
|
|
|
type handler struct {
|
|
db db.Repo
|
|
logger *zap.Logger
|
|
cache cache.Repo
|
|
}
|
|
|
|
func New(logger *zap.Logger, db db.Repo, cache cache.Repo) Handler {
|
|
return &handler{
|
|
logger: logger,
|
|
cache: cache,
|
|
db: db,
|
|
}
|
|
}
|
|
|
|
func (h *handler) i() {}
|