File size: 430 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
package genericapi
import (
"github.com/target/goalert/alert"
"github.com/target/goalert/heartbeat"
"github.com/target/goalert/integrationkey"
"github.com/target/goalert/user"
)
// Config contains the values needed to implement the generic API handler.
type Config struct {
AlertStore *alert.Store
IntegrationKeyStore *integrationkey.Store
HeartbeatStore *heartbeat.Store
UserStore *user.Store
}
|