* created service for sending google transcripts to gen ai * TP-45807| resolved bugs in drive service tests * TP-45807| unit tests for getting conversation data function * creating driveservice in app context and passing to rca service * modified the unit tests to accomodate driveservicemock * resolved merge conflicts * resolved merge conflicts
9 lines
326 B
Go
9 lines
326 B
Go
package service
|
|
|
|
type SlackAndTranscriptUrlResponse struct {
|
|
SlackPreSignedUrl string `json:"slackPreSignedUrl"`
|
|
SlackIdentifierKey string `json:"slackIdentifierKey"`
|
|
TranscriptsPreSignedUrls []string `json:"transcriptsPreSignedUrls"`
|
|
TranscriptIdentifierKeys []string `json:"transcriptIdentifierKeys"`
|
|
}
|