gatewaygroup.go 517 B

12345678910111213141516171819202122232425
  1. package handler
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "github.com/go-nunu/nunu-layout-advanced/internal/service"
  5. )
  6. type GatewayGroupHandler struct {
  7. *Handler
  8. gatewayGroupService service.GatewayGroupService
  9. }
  10. func NewGatewayGroupHandler(
  11. handler *Handler,
  12. gatewayGroupService service.GatewayGroupService,
  13. ) *GatewayGroupHandler {
  14. return &GatewayGroupHandler{
  15. Handler: handler,
  16. gatewayGroupService: gatewayGroupService,
  17. }
  18. }
  19. func (h *GatewayGroupHandler) GetGatewayGroup(ctx *gin.Context) {
  20. }