mirror of
https://github.com/pomerium/pomerium.git
synced 2025-07-28 05:59:10 +02:00
7 lines
181 B
Go
7 lines
181 B
Go
// Package identity is a package to avoid a dependency cycle.
|
|
package identity
|
|
|
|
// State is the state for authentication.
|
|
type State interface {
|
|
SetRawIDToken(rawIDToken string)
|
|
}
|