chore: prettier

This commit is contained in:
Adrian Castro
2024-02-12 21:38:34 +01:00
parent 8dde4a8cd0
commit 8516060bc7
4 changed files with 146 additions and 148 deletions

View File

@@ -1,6 +1,7 @@
import type { ScrapeMedia, Stream } from "@movie-web/providers";
export const name = "provider-utils";
export * from "./video";
export * from "./util";
import type { Stream, ScrapeMedia } from "@movie-web/providers";
export type { Stream, ScrapeMedia };

View File

@@ -28,16 +28,16 @@ export async function getVideoStream({
consistentIpForRequests: true,
});
const options: RunnerOptions = {
media,
events: {
init: onEvent,
update: onEvent,
discoverEmbeds: onEvent,
start: onEvent,
}
};
const options: RunnerOptions = {
media,
events: {
init: onEvent,
update: onEvent,
discoverEmbeds: onEvent,
start: onEvent,
},
};
const result = await providers.runAll(options);
if (!result) return null;