Move api.ts to api/status.ts

This commit is contained in:
dangered wolf 2023-03-20 01:21:56 -04:00
parent ce0d199981
commit 5f20e2c4fe
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 10 additions and 10 deletions

View file

@ -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 */

View file

@ -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 {