* TP-52454| created zenduty integration * TP-52454| added migration script for external team table * TP-52454| added extra logs * TP-52454| modified logs * TP-52454|added extra logs * TP-52454| changed post url for zenduty * TP-52454| fixed bugs in zenduty client * TP-52454| created constants for environmental varibales * TP-52454| enabled zenduty if severity is less than or equal to the defined config
8 lines
220 B
Go
8 lines
220 B
Go
package externalTeamRepo
|
|
|
|
import "houston/model/externalTeam"
|
|
|
|
type IExternalTeamRepository interface {
|
|
GetExternalTeamEntityByTeamIdAndProvider(teamId uint, provider string) (*externalTeam.ExternalTeamEntity, error)
|
|
}
|