11 lines
121 B
Go
11 lines
121 B
Go
|
package consts
|
||
|
|
||
|
import (
|
||
|
"github.com/gin-gonic/gin"
|
||
|
)
|
||
|
|
||
|
type Metadata struct {
|
||
|
Http *gin.Context
|
||
|
User *UserTokenInfo
|
||
|
}
|