mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Move api.ts to api/status.ts
This commit is contained in:
parent
ce0d199981
commit
5f20e2c4fe
2 changed files with 10 additions and 10 deletions
|
@ -1,12 +1,12 @@
|
|||
import { renderCard } from './helpers/card';
|
||||
import { Constants } from './constants';
|
||||
import { fetchConversation } from './fetch';
|
||||
import { linkFixer } from './helpers/linkFixer';
|
||||
import { handleMosaic } from './helpers/mosaic';
|
||||
import { colorFromPalette } from './helpers/palette';
|
||||
import { translateTweet } from './helpers/translate';
|
||||
import { unescapeText } from './helpers/utils';
|
||||
import { processMedia } from './helpers/media';
|
||||
import { renderCard } from '../helpers/card';
|
||||
import { Constants } from '../constants';
|
||||
import { fetchConversation } from '../fetch';
|
||||
import { linkFixer } from '../helpers/linkFixer';
|
||||
import { handleMosaic } from '../helpers/mosaic';
|
||||
import { colorFromPalette } from '../helpers/palette';
|
||||
import { translateTweet } from '../helpers/translate';
|
||||
import { unescapeText } from '../helpers/utils';
|
||||
import { processMedia } from '../helpers/media';
|
||||
|
||||
/* This function does the heavy lifting of processing data from Twitter API
|
||||
and using it to create FixTweet's streamlined API responses */
|
|
@ -3,7 +3,7 @@ import { handleQuote } from './helpers/quote';
|
|||
import { formatNumber, sanitizeText } from './helpers/utils';
|
||||
import { Strings } from './strings';
|
||||
import { getAuthorText } from './helpers/author';
|
||||
import { statusAPI } from './api';
|
||||
import { statusAPI } from './api/status';
|
||||
|
||||
export const returnError = (error: string): StatusResponse => {
|
||||
return {
|
||||
|
|
Loading…
Add table
Reference in a new issue