14 lines
229 B
Go
14 lines
229 B
Go
package plant
|
|
|
|
import "sundynix-go/service"
|
|
|
|
type ApiGroup struct {
|
|
MyPlantApi
|
|
PostApi
|
|
}
|
|
|
|
var (
|
|
plantService = service.GroupApp.PlantServiceGroup.MyPlantService
|
|
postService = service.GroupApp.PlantServiceGroup.PostService
|
|
)
|