mirror of
https://github.com/xslasd/x-oidc.git
synced 2025-09-27 20:32:19 +08:00
11 lines
209 B
Go
11 lines
209 B
Go
package oidc
|
|
|
|
import (
|
|
"context"
|
|
"github.com/xslasd/x-oidc/model"
|
|
)
|
|
|
|
func (o *OpenIDProvider) implicitExchange(ctx context.Context, req *TokenExchangeReq) (*model.AccessTokenRes, error) {
|
|
return nil, nil
|
|
}
|