Added reset password route
This commit is contained in:
@@ -44,6 +44,10 @@ func Load() error {
|
||||
ContractAddress: getEnv("NOVATECH_BLOCKCHAIN_CONTRACT_ADDRESS", ""),
|
||||
WalletAddress: getEnv("NOVATECH_BLOCKCHAIN_WALLET_ADDRESS", ""),
|
||||
WalletPrivateKey: getEnv("NOVATECH_BLOCKCHAIN_WALLET_PRIVATE_KEY", ""),
|
||||
},
|
||||
AWS: AWS {
|
||||
AccessKey: getEnv("AWS_ACCESS_KEY_ID", ""),
|
||||
SecretKey: getEnv("AWS_SECRET_ACCESS_KEY", ""),
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
@@ -6,6 +6,7 @@ type Config struct {
|
||||
AdminService Service
|
||||
Database Database
|
||||
Blockchain Blockchain
|
||||
AWS AWS
|
||||
}
|
||||
|
||||
// Service contains configuration for service
|
||||
@@ -32,3 +33,8 @@ type Database struct {
|
||||
HostName string
|
||||
Port string
|
||||
}
|
||||
|
||||
type AWS struct {
|
||||
AccessKey string
|
||||
SecretKey string
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user