mirror of
https://github.com/1f349/lavender.git
synced 2025-02-23 06:05:08 +00:00
11 lines
211 B
Go
11 lines
211 B
Go
package auth
|
|
|
|
import "github.com/1f349/lavender/auth/authContext"
|
|
|
|
type Callback interface {
|
|
Provider
|
|
|
|
// AttemptCallback processes the login request.
|
|
AttemptCallback(ctx authContext.TemplateContext) error
|
|
}
|