Files
go-chat/router/router.go
landaiqing ff0fddd5c3 init
2024-07-31 13:35:43 +08:00

13 lines
170 B
Go

package router
import (
"github.com/gin-gonic/gin"
"go-chat/service"
)
func Router() *gin.Engine {
r := gin.Default()
r.GET("/index", service.GetIndex)
return r
}