file uploader

This commit is contained in:
2023-10-05 10:27:52 -06:00
parent 6e582e11dc
commit 5779cd9efc
17 changed files with 847 additions and 37 deletions

View File

@@ -1,5 +1,13 @@
export type Loader = 'forge' | 'fabric' | 'vanilla' | 'unset';
import { ModrinthProject } from "../lib/modrinth.ts";
export type Loader = "forge" | "fabric" | "vanilla" | "unset";
export type MCGrizzConf = {
loader: Loader
}
loader: Loader;
version: string;
mods?: {
source: "modrinth";
details: ModrinthProject;
jarName?: string;
}[];
};