16 lines
303 B
Go
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
|
|
)
|