blob: 8f744ab8081b9bd946615a70235db9db916b01ee (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
package add
import (
"github.com/labstack/echo/v4"
"github.com/uptrace/bun"
)
type Handler struct {
db *bun.DB
}
// NewHandler returns new Handler.
func NewHandler(db *bun.DB) *Handler {
return &Handler{db: db}
}
func (h *Handler) Register(g *echo.Group) {
g.GET("", h.AddQuote)
g.POST("", h.AddQuotePost)
g.GET("/success", h.AddQuoteSuccess)
}
|