Setting up flow for resolvers.

Repo structure classes should be responsible for pulling versioned files.
Ex. /forge/1.14/ -> get the latest file (or only allow one file).
The resolver then gets that file to work with in order to resolve the forge
module, pull its libs, and attach them as submodules.
This commit is contained in:
Daniel Scalzi
2019-09-10 00:59:51 -04:00
parent 79ab8abad2
commit d04fb61f2a
21 changed files with 200 additions and 31 deletions

View File

@@ -0,0 +1,5 @@
export interface FileStructure {
init(): void
}