mirror of
https://gitee.com/shikong-sk/golang-study
synced 2025-05-23 02:18:07 +08:00
15 lines
182 B
Go
15 lines
182 B
Go
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)
|
|
}
|
|
}
|