File size: 495 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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
}
|