Fix bug
This commit is contained in:
parent
9f645ce6d8
commit
c7479d9d95
1 changed files with 4 additions and 3 deletions
|
@ -1,10 +1,11 @@
|
|||
import * as express from 'express';
|
||||
//import * as Twitter from 'twitter';
|
||||
import Twitter = require('twitter');
|
||||
const Twitter = require('twitter');
|
||||
import config from '../../../conf';
|
||||
|
||||
const client = new Twitter({
|
||||
consumer_key: process.env.TWITTER_CONSUMER_KEY,
|
||||
consumer_secret: process.env.TWITTER_CONSUMER_SECRET
|
||||
consumer_key: config.twitter.consumer_key,
|
||||
consumer_secret: config.twitter.consumer_secret
|
||||
});
|
||||
|
||||
module.exports = (req: express.Request, res: express.Response) => {
|
||||
|
|
Loading…
Reference in a new issue