b6d0c89aa1
Co-authored-by: multica-agent <github@multica.ai>
12 lines
304 B
Go
12 lines
304 B
Go
package common
|
|
|
|
import (
|
|
"github.com/gin-gonic/gin"
|
|
authHandler "github.com/perfect-panel/server/internal/handler/auth"
|
|
"github.com/perfect-panel/server/internal/svc"
|
|
)
|
|
|
|
func CheckCodeLegacyV2Handler(svcCtx *svc.ServiceContext) gin.HandlerFunc {
|
|
return authHandler.CheckCodeLegacyV2Handler(svcCtx)
|
|
}
|