mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 05:38:44 +08:00
9 lines
261 B
TypeScript
9 lines
261 B
TypeScript
import { Client } from "../client.ts";
|
|
import { EhDb } from "../db.ts";
|
|
import { Task } from "../task.ts";
|
|
|
|
export async function download_task(task: Task, client: Client, db: EhDb) {
|
|
console.log("Started to download gallery", task.gid);
|
|
return task;
|
|
}
|