fix: mp verify

This commit is contained in:
yanghao05
2025-04-23 09:36:31 +08:00
parent 7a7bd3ff6e
commit 837941b7ec
5 changed files with 40 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
package http
import "github.com/gofiber/fiber/v3"
// @provider
type weChat struct{}
// Verify
// @Router /MP_verify_:code.txt [get]
// @Bind code path
func (*weChat) Verify(ctx fiber.Ctx, code string) error {
return ctx.SendString(code)
}