zitadel-oidc/example/internal/mock/storage.go
2019-11-18 15:37:48 +01:00

12 lines
169 B
Go

package mock
import (
"github.com/caos/oidc/pkg/oidc"
)
type Storage struct {
}
func (s *Storage) CreateAuthRequest(authReq *oidc.AuthRequest) error {
return nil
}