1
0
Fork 0
mirror of https://github.com/sussy-code/smov.git synced 2025-01-09 17:37:40 +01:00
smov/src/backend/index.ts

20 lines
487 B
TypeScript
Raw Normal View History

2023-01-11 21:16:48 +01:00
import { initializeScraperStore } from "./helpers/register";
// TODO backend system:
// - caption support
// - hooks to run all providers one by one
// - move over old providers to new system
// - implement jons providers/embedscrapers
// providers
// -- nothing here yet
import "./providers/testProvider";
2023-01-12 22:04:28 +01:00
import "./providers/testProviderTwo";
2023-01-11 21:16:48 +01:00
// embeds
// -- nothing here yet
2023-01-12 22:04:28 +01:00
import "./embeds/testEmbedScraper";
import "./embeds/testEmbedScraperTwo";
2023-01-11 21:16:48 +01:00
initializeScraperStore();