You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
667 B
Go

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 OauthLoginByCodeLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
r *http.Request
}
func NewOauthLoginByCodeLogic(r *http.Request, ctx context.Context, svcCtx *svc.ServiceContext) *OauthLoginByCodeLogic {
return &OauthLoginByCodeLogic{
r: r,
ctx: ctx,
svcCtx: svcCtx,
}
}
func (l *OauthLoginByCodeLogic) OauthLoginByCode(req *types.OauthLoginByCodeReq) (resp *types.LoginResp, err error) {
// todo: add your logic here and delete this line
return
}