fixed the import statements;

This commit is contained in:
bill bittner 2018-01-23 14:45:54 -08:00
parent 5c4e412fba
commit 7374c62f4b
3 changed files with 6 additions and 4 deletions

View file

@ -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',
};

View file

@ -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');

View file

@ -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');