Move status.ts to embed/status.ts

This commit is contained in:
dangered wolf 2023-05-12 16:32:59 -04:00
parent 57c03d0455
commit 56bcec02b7
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58
2 changed files with 7 additions and 7 deletions

View file

@ -1,9 +1,9 @@
import { Constants } from './constants';
import { handleQuote } from './helpers/quote';
import { formatNumber, sanitizeText } from './helpers/utils';
import { Strings } from './strings';
import { getAuthorText } from './helpers/author';
import { statusAPI } from './api/status';
import { Constants } from '../constants';
import { handleQuote } from '../helpers/quote';
import { formatNumber, sanitizeText } from '../helpers/utils';
import { Strings } from '../strings';
import { getAuthorText } from '../helpers/author';
import { statusAPI } from '../api/status';
export const returnError = (error: string): StatusResponse => {
return {

View file

@ -2,7 +2,7 @@ import Toucan from 'toucan-js';
import { IRequest, Router } from 'itty-router';
import { Constants } from './constants';
import { handleStatus } from './status';
import { handleStatus } from './embed/status';
import { Strings } from './strings';
import motd from '../motd.json';