mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 04:33:11 +03:00
Изменены пути
This commit is contained in:
parent
7c835e145a
commit
906a89e49e
4 changed files with 11 additions and 11 deletions
|
@ -1,5 +1,5 @@
|
|||
const schedule = require('node-schedule');
|
||||
const config = require('../config/main.js')();
|
||||
const config = require('../shared/config/src/main.js')();
|
||||
const cron = require('cron-validator');
|
||||
|
||||
const save_fiat = require('./save_fiat');
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const config = require('../config/main.js')();
|
||||
const config = require('../shared/config/src/main.js')();
|
||||
const axios = require('axios');
|
||||
const pool = require('../database/postgresql.js');
|
||||
const logger = require('../logger/main.js');
|
||||
const pool = require('../shared/database/src/postgresql.js');
|
||||
const logger = require('../shared/logger/src/main.js');
|
||||
|
||||
const coinapiKeys = config['currency']['coinapiKeys'];
|
||||
let apiKeyIndex = 0;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
const pool = require('../database/postgresql.js');
|
||||
const pool = require('../shared/database/src/postgresql.js');
|
||||
const axios = require('axios');
|
||||
const config = require('../config/main.js')();
|
||||
const logger = require('../logger/main.js');
|
||||
const config = require('../shared/config/src/main.js')();
|
||||
const logger = require('../shared/logger/src/main.js');
|
||||
|
||||
/**
|
||||
* Saves exchange rate of the fiat currency
|
||||
|
|
Loading…
Add table
Reference in a new issue