ctrl_context.go 206 B

123456789101112
  1. package entitys
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "github.com/xormplus/xorm"
  5. )
  6. type CtrlContext struct {
  7. Ctx *gin.Context
  8. Db *xorm.Engine
  9. PlatformDbEngine *xorm.Engine
  10. }