mirror of
https://github.com/Viren070/MediaFusion.git
synced 2025-12-01 23:21:11 +01:00
20 lines
440 B
Python
20 lines
440 B
Python
import asyncio
|
|
|
|
from db import database
|
|
|
|
# import background actors
|
|
from scrapers import helpers # noqa: F401
|
|
from scrapers import prowlarr # noqa: F401
|
|
from mediafusion_scrapy import task # noqa: F401
|
|
from utils import torrent
|
|
from utils import validation_helper # noqa: F401
|
|
from scrapers import tv # noqa: F401
|
|
|
|
|
|
async def async_setup():
|
|
await torrent.init_best_trackers()
|
|
await database.init()
|
|
|
|
|
|
asyncio.run(async_setup())
|