quzuu-api-dev / utils /Helper.go
lifedebugger's picture
Deploy files from GitHub repository
e762600
raw
history blame contribute delete
223 Bytes
package utils
import (
"github.com/gin-gonic/gin"
"godp.abdanhafidz.com/models"
)
func GetAccount(c *gin.Context) models.AccountData {
cParam, _ := c.Get("accountData")
return cParam.(models.AccountData)
}