1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
module github.com/aws/aws-sdk-go-v2/service/transcribestreaming/internal/testing
go 1.20
require (
github.com/aws/aws-sdk-go-v2 v1.30.3
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.3
github.com/aws/aws-sdk-go-v2/service/internal/eventstreamtesting v1.4.13
github.com/aws/aws-sdk-go-v2/service/transcribestreaming v1.19.3
github.com/aws/smithy-go v1.20.3
)
require (
github.com/aws/aws-sdk-go-v2/credentials v1.17.26 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.15 // indirect
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.15 // indirect
)
replace github.com/aws/aws-sdk-go-v2 => ../../../../
replace github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream => ../../../../aws/protocol/eventstream/
replace github.com/aws/aws-sdk-go-v2/credentials => ../../../../credentials/
replace github.com/aws/aws-sdk-go-v2/feature/ec2/imds => ../../../../feature/ec2/imds/
replace github.com/aws/aws-sdk-go-v2/internal/configsources => ../../../../internal/configsources/
replace github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 => ../../../../internal/endpoints/v2/
replace github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding => ../../../../service/internal/accept-encoding/
replace github.com/aws/aws-sdk-go-v2/service/internal/eventstreamtesting => ../../../../service/internal/eventstreamtesting/
replace github.com/aws/aws-sdk-go-v2/service/internal/presigned-url => ../../../../service/internal/presigned-url/
replace github.com/aws/aws-sdk-go-v2/service/sso => ../../../../service/sso/
replace github.com/aws/aws-sdk-go-v2/service/ssooidc => ../../../../service/ssooidc/
replace github.com/aws/aws-sdk-go-v2/service/sts => ../../../../service/sts/
replace github.com/aws/aws-sdk-go-v2/service/transcribestreaming => ../../../../service/transcribestreaming/
|