bygdata/config/aws.go
liuzhiwang e57ec346ea add
2026-02-02 17:57:11 +08:00

10 lines
587 B
Go

package config
type AwsConfig struct {
AwsSqsUrl string `mapstructure:"aws-sqs-url" json:"aws-sqs-url" yaml:"aws-sqs-url"`
PushAwsSqsUrl string `mapstructure:"push-aws-sqs-url" json:"push-aws-sqs-url" yaml:"push-aws-sqs-url"`
AwsSqsAccessKey string `mapstructure:"aws-sqs-access-key" json:"aws-sqs-access-key" yaml:"aws-sqs-access-key"` // SQS Access Key
AwsSqsSecretKey string `mapstructure:"aws-sqs-secret-key" json:"aws-sqs-secret-key" yaml:"aws-sqs-secret-key"` // SQS Secret Key
SqsRegion string `mapstructure:"sqs-region" json:"sqs-region" yaml:"sqs-region"`
}