mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-05-29 14:56:21 -05:00
This commit improve the error handling for the edge function to add a new source and the worker, so that we get more insights why a request fails. A user will now also get a more detailed error why a source could not be added.
18 lines
517 B
TypeScript
18 lines
517 B
TypeScript
import { getFavicon } from './getFavicon.ts';
|
|
import { uploadSourceIcon } from './uploadFile.ts';
|
|
import { getAndParseFeed } from './getAndParseFeed.ts';
|
|
import { assertEqualsItems, assertEqualsSource } from './test.ts';
|
|
import { FeedGetAndParseError, FeedValidationError } from './errors.ts';
|
|
|
|
export type { Favicon } from './getFavicon.ts';
|
|
|
|
export const feedutils = {
|
|
getFavicon,
|
|
uploadSourceIcon,
|
|
assertEqualsItems,
|
|
assertEqualsSource,
|
|
getAndParseFeed,
|
|
FeedValidationError,
|
|
FeedGetAndParseError,
|
|
};
|