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