fixed the import statements;
This commit is contained in:
parent
5c4e412fba
commit
7374c62f4b
3 changed files with 6 additions and 4 deletions
|
@ -1,2 +1,4 @@
|
|||
export const PUBLISH_ANONYMOUS_CLAIM = 'PUBLISH_ANONYMOUS_CLAIM';
|
||||
export const PUBLISH_IN_CHANNEL_CLAIM = 'PUBLISH_IN_CHANNEL_CLAIM';
|
||||
module.exports = {
|
||||
PUBLISH_ANONYMOUS_CLAIM : 'PUBLISH_ANONYMOUS_CLAIM',
|
||||
PUBLISH_IN_CHANNEL_CLAIM: 'PUBLISH_IN_CHANNEL_CLAIM',
|
||||
};
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as constants from '../constants';
|
||||
const constants = require('../constants');
|
||||
const logger = require('winston');
|
||||
const fs = require('fs');
|
||||
const { site, wallet } = require('../config/speechConfig.js');
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
import * as constants from '../constants';
|
||||
const constants = require('../constants');
|
||||
const logger = require('winston');
|
||||
const ua = require('universal-analytics');
|
||||
const config = require('../config/speechConfig.js');
|
||||
|
|
Loading…
Add table
Reference in a new issue