Files
2025-06-09 20:50:52 +08:00

11 lines
141 B
Go

package routers
import "github.com/gin-gonic/gin"
func V1_time_api(r *gin.RouterGroup) {
r.GET("/now", func(ctx *gin.Context) {
})
}