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