mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
fix: typo on downloaders folder
This commit is contained in:
parent
ff189f7677
commit
2a674ed988
11 changed files with 7 additions and 7 deletions
|
@ -4,7 +4,7 @@ import { registerEvent } from "../register-event";
|
||||||
import { WindowManager } from "@main/services";
|
import { WindowManager } from "@main/services";
|
||||||
|
|
||||||
import { In } from "typeorm";
|
import { In } from "typeorm";
|
||||||
import { Downloader } from "@main/services/donwloaders/downloader";
|
import { Downloader } from "@main/services/downloaders/downloader";
|
||||||
import { GameStatus } from "@globals";
|
import { GameStatus } from "@globals";
|
||||||
|
|
||||||
const cancelGameDownload = async (
|
const cancelGameDownload = async (
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { WindowManager } from "@main/services";
|
||||||
import { registerEvent } from "../register-event";
|
import { registerEvent } from "../register-event";
|
||||||
import { gameRepository } from "../../repository";
|
import { gameRepository } from "../../repository";
|
||||||
import { In } from "typeorm";
|
import { In } from "typeorm";
|
||||||
import { Downloader } from "@main/services/donwloaders/downloader";
|
import { Downloader } from "@main/services/downloaders/downloader";
|
||||||
import { GameStatus } from "@globals";
|
import { GameStatus } from "@globals";
|
||||||
|
|
||||||
const pauseGameDownload = async (
|
const pauseGameDownload = async (
|
||||||
|
|
|
@ -2,7 +2,7 @@ import { registerEvent } from "../register-event";
|
||||||
import { gameRepository } from "../../repository";
|
import { gameRepository } from "../../repository";
|
||||||
import { getDownloadsPath } from "../helpers/get-downloads-path";
|
import { getDownloadsPath } from "../helpers/get-downloads-path";
|
||||||
import { In } from "typeorm";
|
import { In } from "typeorm";
|
||||||
import { Downloader } from "@main/services/donwloaders/downloader";
|
import { Downloader } from "@main/services/downloaders/downloader";
|
||||||
import { GameStatus } from "@globals";
|
import { GameStatus } from "@globals";
|
||||||
|
|
||||||
const resumeGameDownload = async (
|
const resumeGameDownload = async (
|
||||||
|
|
|
@ -6,7 +6,7 @@ import { registerEvent } from "../register-event";
|
||||||
import type { GameShop } from "@types";
|
import type { GameShop } from "@types";
|
||||||
import { getImageBase64 } from "@main/helpers";
|
import { getImageBase64 } from "@main/helpers";
|
||||||
import { In } from "typeorm";
|
import { In } from "typeorm";
|
||||||
import { Downloader } from "@main/services/donwloaders/downloader";
|
import { Downloader } from "@main/services/downloaders/downloader";
|
||||||
import { GameStatus } from "@globals";
|
import { GameStatus } from "@globals";
|
||||||
|
|
||||||
const startGameDownload = async (
|
const startGameDownload = async (
|
||||||
|
|
|
@ -17,12 +17,12 @@ import {
|
||||||
steamGameRepository,
|
steamGameRepository,
|
||||||
userPreferencesRepository,
|
userPreferencesRepository,
|
||||||
} from "./repository";
|
} from "./repository";
|
||||||
import { TorrentClient } from "./services/donwloaders/torrent-client";
|
import { TorrentClient } from "./services/downloaders/torrent-client";
|
||||||
import { Repack } from "./entity";
|
import { Repack } from "./entity";
|
||||||
import { Notification } from "electron";
|
import { Notification } from "electron";
|
||||||
import { t } from "i18next";
|
import { t } from "i18next";
|
||||||
import { In } from "typeorm";
|
import { In } from "typeorm";
|
||||||
import { Downloader } from "./services/donwloaders/downloader";
|
import { Downloader } from "./services/downloaders/downloader";
|
||||||
import { GameStatus } from "@globals";
|
import { GameStatus } from "@globals";
|
||||||
|
|
||||||
startProcessWatcher();
|
startProcessWatcher();
|
||||||
|
|
|
@ -6,6 +6,6 @@ export * from "./steam-grid";
|
||||||
export * from "./update-resolver";
|
export * from "./update-resolver";
|
||||||
export * from "./window-manager";
|
export * from "./window-manager";
|
||||||
export * from "./fifo";
|
export * from "./fifo";
|
||||||
export * from "./donwloaders/torrent-client";
|
export * from "./downloaders/torrent-client";
|
||||||
export * from "./how-long-to-beat";
|
export * from "./how-long-to-beat";
|
||||||
export * from "./process-watcher";
|
export * from "./process-watcher";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue