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