package auth import ( "context" "git.noahlan.cn/n-admin/n-admin-server/api/internal/svc" "git.noahlan.cn/n-admin/n-admin-server/api/internal/types" "net/http" ) type OauthCallbackLogic struct { ctx context.Context svcCtx *svc.ServiceContext r *http.Request } func NewOauthCallbackLogic(r *http.Request, ctx context.Context, svcCtx *svc.ServiceContext) *OauthCallbackLogic { return &OauthCallbackLogic{ r: r, ctx: ctx, svcCtx: svcCtx, } } func (l *OauthCallbackLogic) OauthCallback() (resp *types.LoginResp, err error) { // todo: add your logic here and delete this line return }