package ext import ( "github.com/gin-gonic/gin" ) func initEng(s *gin.Engine) { for _, initF := range initEngQueue { initF(s) } }