File size: 217 Bytes
3f70c4e
 
 
8b40e41
3f70c4e
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
package utils

import (
	"api.qobiltu.id/models"
	"github.com/gin-gonic/gin"
)

func GetAccount(c *gin.Context) models.AccountData {
	cParam, _ := c.Get("accountData")
	return cParam.(models.AccountData)
}