mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-07-29 23:30:46 -05:00
Instead of using an `import_map.json` file to define the versions for dependencies, they are now defined directly within the import. Since the `import_map.json` file should not be used anymore and instead a `deno.json` file per function should be used, we decided to define them directly with the code. The overhead compared to a `deno.json` file per function shouldn't be that large and it makes using functions in a self-hosted setup easier.
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,
|
|
};
|