mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-02 17:52:25 -06:00
[chore] Move deps to code.superseriousbusiness.org (#4054)
This commit is contained in:
parent
68ed7aba25
commit
ffde1b150f
955 changed files with 1970 additions and 3639 deletions
28
vendor/codeberg.org/superseriousbusiness/oauth2/v4/generate.go
generated
vendored
28
vendor/codeberg.org/superseriousbusiness/oauth2/v4/generate.go
generated
vendored
|
|
@ -1,28 +0,0 @@
|
|||
package oauth2
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
"time"
|
||||
)
|
||||
|
||||
type (
|
||||
// GenerateBasic provide the basis of the generated token data
|
||||
GenerateBasic struct {
|
||||
Client ClientInfo
|
||||
UserID string
|
||||
CreateAt time.Time
|
||||
TokenInfo TokenInfo
|
||||
Request *http.Request
|
||||
}
|
||||
|
||||
// AuthorizeGenerate generate the authorization code interface
|
||||
AuthorizeGenerate interface {
|
||||
Token(ctx context.Context, data *GenerateBasic) (code string, err error)
|
||||
}
|
||||
|
||||
// AccessGenerate generate the access and refresh tokens interface
|
||||
AccessGenerate interface {
|
||||
Token(ctx context.Context, data *GenerateBasic, isGenRefresh bool) (access, refresh string, err error)
|
||||
}
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue