golang-study/gin/internal/controller/v1/v1.go

15 lines
182 B
Go
Raw Normal View History

2024-11-14 00:07:35 +08:00
package v1
import (
"gin-study/internal/controller/v1/health"
"github.com/gin-gonic/gin"
)
func Register(e *gin.RouterGroup) {
v1 := e.Group("/v1")
{
health.Health(v1)
}
}