Skip to content

Commit

Permalink
refactor: move instances into lib
Browse files Browse the repository at this point in the history
  • Loading branch information
ariscript committed Nov 25, 2021
1 parent b99c530 commit 5dc2258
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { app, BrowserWindow, ipcMain } from "electron";
import updater from "update-electron-app";
import log from "electron-log";

import createInstance from "./instances/createInstance";
import createInstance from "./lib/instances/createInstance";

// declarations for webpack magic constants for built react code
declare const MAIN_WINDOW_WEBPACK_ENTRY: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { createWriteStream } from "fs";
import path from "path";
import cp from "child_process";

import type { InstanceOptions } from "../types";
import type { InstanceOptions } from "../../types";

/**
* Creates a new minecraft server instance
Expand Down

0 comments on commit 5dc2258

Please # to comment.