Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Bloodlines ¶
Bloodlines has connection information for the bloodlines service
type MySQL ¶
type MySQL struct {
Host string `json:"host"`
Port string `json:"port"`
User string `json:"user"`
Password string `json:"password"`
Database string `json:"database"`
}
MySQL contains information for connecting to a MySQL instance
type Rabbit ¶
type Rabbit struct {
Host string `json:"host"`
Port string `json:"port"`
PubQ string `json:"pubq"`
}
Rabbit has connection info for RabbitMQ
type Root ¶
type Root struct {
SQL MySQL `json:"mysql"`
Sendgrid Sendgrid `json:"sendgrid"`
TownCenter TownCenter `json:"towncenter"`
Bloodlines Bloodlines `json:"bloodlines"`
Covenant Covenant `json:"covenant"`
Warehouse Warehouse `json:"warehouse"`
Coinage Coinage `json:"coinage"`
Rabbit Rabbit `json:"rabbit"`
Statsd Statsd `json:"statsd"`
Stripe Stripe `json:"stripe"`
S3 S3 `json:"s3"`
Port string `json:"port"`
Shippo Shippo `json:"shippo"`
JWT JWT //`json:"jwt"`
}
Root is the base struct containing bloodlines configs
type S3 ¶
type S3 struct {
Region string `json:"region"`
AccessKey string `json:"accessKey"`
Secret string `json:"secret"`
Bucket string `json:"bucket"`
}
S3 conatains information for connecting to amazon s3
type Sendgrid ¶
type Sendgrid struct {
APIKey string `json:"api_key"`
FromEmail string `json:"from_email"`
FromName string `json:"from_name"`
Host string `json:"host"`
}
Sendgrid has connection information for the sendgrid gateway
type Statsd ¶
type Statsd struct {
Host string `json:"host"`
Port string `json:"port"`
Prefix string `json:"prefix"`
}
Statsd contains connection information for graphite stats
type Stripe ¶
type Stripe struct {
Secret string `json:"secret"`
Public string `json:"public"`
ApplicationFee float64 `json:"applicationFee"`
StripeFeePercent float64 `json:"stripeFeePercent"`
}
Stripe has connection information for the stripe gateway
type TownCenter ¶
TownCenter has connection information for the town center service
Click to show internal directories.
Click to hide internal directories.