1
0
mirror of https://github.com/zitadel/zitadel.git synced 2025-03-31 15:02:16 +00:00
Livio Spring 598a4d2d4b
feat: add basic structure of idp templates ()
add basic structure and implement first providers for IDP templates to be able to manage and use them in the future
2023-01-23 08:11:40 +01:00

12 lines
226 B
Go

package idp
import (
"context"
)
// Session is the minimal implementation for a session of a 3rd party authentication [Provider]
type Session interface {
GetAuthURL() string
FetchUser(ctx context.Context) (User, error)
}