react-code-dataset / goalert /auth /handlerconfig.go
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
495 Bytes
package auth
import (
"github.com/target/goalert/apikey"
"github.com/target/goalert/calsub"
"github.com/target/goalert/integrationkey"
"github.com/target/goalert/keyring"
"github.com/target/goalert/user"
)
// HandlerConfig provides configuration for the auth handler.
type HandlerConfig struct {
UserStore *user.Store
SessionKeyring keyring.Keyring
APIKeyring keyring.Keyring
IntKeyStore *integrationkey.Store
CalSubStore *calsub.Store
APIKeyStore *apikey.Store
}