fix: remove unused env var
This commit is contained in:
parent
5e62d31124
commit
6a6a8f9d32
|
@ -38,7 +38,7 @@ The application uses the following environment variables:
|
|||
ORDERS_COLLECTION: The name of the MongoDB collection for orders.
|
||||
CONVERSOR_API: The API used for converting USD to Bitcoin.
|
||||
RPC_HOST, RPC_AUTH, RPC_ZMQ, WALLET_ADDRESS: Configuration for the Bitcoin service.
|
||||
MAIL_USER, MAIL_PASSWORD, MAIL_HOST, MAIL_PORT, MAIL_FROM, MAIL_TEMPLATES_DIR: Configuration for the mail service.
|
||||
MAIL_USER, MAIL_PASSWORD, MAIL_HOST, MAIL_PORT, MAIL_FROM: Configuration for the mail service.
|
||||
```
|
||||
|
||||
### Webhook configuration
|
||||
|
|
|
@ -27,7 +27,6 @@ type Config struct {
|
|||
MailUser string `required:"true" split_words:"true"`
|
||||
MailPassword string `required:"true" split_words:"true"`
|
||||
MailFrom string `required:"true" split_words:"true"`
|
||||
MailTemplatesDir string `required:"true" split_words:"true"`
|
||||
MailTo string `required:"false" split_words:"true"`
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue