1
0
Fork 0

Fix keypairs

refactor/models
Matthew 2019-11-16 20:33:29 -05:00
parent 35519fd948
commit 95a217e3c3
No known key found for this signature in database
GPG Key ID: 766BE43AE75F7559
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@ -4,3 +4,5 @@ src/config.json
package-lock.json package-lock.json
htmlEmail_templates htmlEmail_templates
yarn-error.log yarn-error.log
src/keys.json
dist

View File

@ -9,7 +9,7 @@ export default class Security {
constructor(client: Client) { constructor(client: Client) {
this.client = client; this.client = client;
this.keyPair = client.config.keyPair; this.keyPair = require(`${process.cwd()}/keys.json`);
} }
/** /**