Files
sundynix-plant-be/api/v1/plant/enter.go
T
2026-02-07 16:42:43 +08:00

20 lines
477 B
Go

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