Files
sundynix-plant-be/api/v1/plant/enter.go
T
2026-02-07 15:52:54 +08:00

16 lines
303 B
Go

package plant
import "sundynix-go/service"
type ApiGroup struct {
MyPlantApi
TopicApi
PostApi
}
var (
plantService = service.GroupApp.PlantServiceGroup.MyPlantService
topicService = service.GroupApp.PlantServiceGroup.TopicService
postService = service.GroupApp.PlantServiceGroup.PostService
)