Fix keypairs
parent
35519fd948
commit
95a217e3c3
|
@ -3,4 +3,6 @@ yarn.lock
|
||||||
src/config.json
|
src/config.json
|
||||||
package-lock.json
|
package-lock.json
|
||||||
htmlEmail_templates
|
htmlEmail_templates
|
||||||
yarn-error.log
|
yarn-error.log
|
||||||
|
src/keys.json
|
||||||
|
dist
|
|
@ -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`);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue