This commit is contained in:
2026-07-30 10:53:58 +08:00
commit 42da6fc74e
20 changed files with 2771 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
package controller
import (
"context"
"pointly-tel/amap/model/dto"
"pointly-tel/amap/service"
)
type poi struct{}
var Poi = new(poi)
func (c *poi) Search(ctx context.Context, req *dto.SearchPoiReq) (res *dto.SearchPoiRes, err error) {
return service.PoiService.Search(ctx, req)
}