mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 05:38:44 +08:00
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
import { TaskManager } from "./task_manager.ts";
|
|
|
|
export function add_exit_handler(m: TaskManager) {
|
|
const handler = () => {
|
|
m.close();
|
|
};
|
|
Deno.addSignalListener("SIGINT", handler);
|
|
}
|