ferry/apis/tpl/tpl.go
2020-10-13 00:14:14 +08:00

16 lines
169 B
Go

package tpl
import (
"net/http"
"github.com/gin-gonic/gin"
)
/*
@Author : lanyulei
*/
func Tpl(c *gin.Context) {
c.HTML(http.StatusOK, "index.html", gin.H{})
}