mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
Fix bug
This commit is contained in:
parent
9f645ce6d8
commit
c7479d9d95
@ -1,10 +1,11 @@
|
|||||||
import * as express from 'express';
|
import * as express from 'express';
|
||||||
//import * as Twitter from 'twitter';
|
//import * as Twitter from 'twitter';
|
||||||
import Twitter = require('twitter');
|
const Twitter = require('twitter');
|
||||||
|
import config from '../../../conf';
|
||||||
|
|
||||||
const client = new Twitter({
|
const client = new Twitter({
|
||||||
consumer_key: process.env.TWITTER_CONSUMER_KEY,
|
consumer_key: config.twitter.consumer_key,
|
||||||
consumer_secret: process.env.TWITTER_CONSUMER_SECRET
|
consumer_secret: config.twitter.consumer_secret
|
||||||
});
|
});
|
||||||
|
|
||||||
module.exports = (req: express.Request, res: express.Response) => {
|
module.exports = (req: express.Request, res: express.Response) => {
|
||||||
|
Loading…
Reference in New Issue
Block a user