12345678910111213141516171819202122232425 |
- package handler
- import (
- "github.com/gin-gonic/gin"
- "github.com/go-nunu/nunu-layout-advanced/internal/service"
- )
- type GateWayGroupIpHandler struct {
- *Handler
- gateWayGroupIpService service.GateWayGroupIpService
- }
- func NewGateWayGroupIpHandler(
- handler *Handler,
- gateWayGroupIpService service.GateWayGroupIpService,
- ) *GateWayGroupIpHandler {
- return &GateWayGroupIpHandler{
- Handler: handler,
- gateWayGroupIpService: gateWayGroupIpService,
- }
- }
- func (h *GateWayGroupIpHandler) GetGateWayGroupIp(ctx *gin.Context) {
- }
|