aboutsummaryrefslogtreecommitdiff
path: root/pkg/handler/captcha/handler.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/handler/captcha/handler.go')
-rw-r--r--pkg/handler/captcha/handler.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/handler/captcha/handler.go b/pkg/handler/captcha/handler.go
new file mode 100644
index 0000000..2e3b483
--- /dev/null
+++ b/pkg/handler/captcha/handler.go
@@ -0,0 +1,17 @@
+package captcha
+
+import (
+ "github.com/labstack/echo/v4"
+ "github.com/ssoda/captcha"
+)
+
+type Handler struct{}
+
+// NewHandler returns new Handler.
+func NewHandler() *Handler {
+ return &Handler{}
+}
+
+func (h *Handler) Register(g *echo.Group) {
+ g.GET("/*", echo.WrapHandler(captcha.Server(400, 65)))
+}