Exemple #1
0
/**********************************
         控制台路由方法
**********************************/
func Index(c *gin.Context) {
	point := model.Point{}
	point.GetLast(db)

	obj := make(map[string]interface{})
	obj["lp"] = point

	c.HTML(http.StatusOK, "index.html", obj)
}
Exemple #2
0
/*获得机要密码箱当前位置*/
func GetLocation(c *gin.Context) {
	point := model.Point{}
	point.GetLast(db)

	c.JSON(http.StatusOK, point)
}