gatewaygroupip.go 540 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 GateWayGroupIpHandler struct {
  7. *Handler
  8. gateWayGroupIpService service.GateWayGroupIpService
  9. }
  10. func NewGateWayGroupIpHandler(
  11. handler *Handler,
  12. gateWayGroupIpService service.GateWayGroupIpService,
  13. ) *GateWayGroupIpHandler {
  14. return &GateWayGroupIpHandler{
  15. Handler: handler,
  16. gateWayGroupIpService: gateWayGroupIpService,
  17. }
  18. }
  19. func (h *GateWayGroupIpHandler) GetGateWayGroupIp(ctx *gin.Context) {
  20. }