mirror of
https://gitlab.52pay.top/go/easygoadmin.git
synced 2025-09-26 22:47:58 +08:00
22 lines
351 B
Go
22 lines
351 B
Go
/**
|
|
* 统计分析
|
|
* @author
|
|
* @since 2021/11/30
|
|
* @File : analysis
|
|
*/
|
|
package controller
|
|
|
|
import (
|
|
"easygoadmin/utils/response"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
var Analysis = new(analysisCtl)
|
|
|
|
type analysisCtl struct{}
|
|
|
|
func (c *analysisCtl) Index(ctx *gin.Context) {
|
|
// 渲染模板
|
|
response.BuildTpl(ctx, "analysis_index.html").WriteTpl()
|
|
}
|