feat: 植物识别

This commit is contained in:
Blizzard
2026-02-10 12:35:46 +08:00
parent e612234c91
commit 556ab6baff
24 changed files with 2745 additions and 11473 deletions
+13
View File
@@ -0,0 +1,13 @@
package plant
import "github.com/gin-gonic/gin"
type OcrRouter struct{}
func (c *OcrRouter) InitOcrRouter(Router *gin.RouterGroup) {
badgeRouter := Router.Group("classify")
{
badgeRouter.POST("/plant", ocrApi.ClassifyPlant)
}
}