diff options
Diffstat (limited to 'installer.py')
-rw-r--r-- | installer.py | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/installer.py b/installer.py new file mode 100644 index 0000000..2df64a4 --- /dev/null +++ b/installer.py @@ -0,0 +1,28 @@ +import subprocess +import os +import requests +from util import config + + +def install_forge(java_path): + """ + :param java_path: path to a working Java executable + Downloads and runs the Forge installer specified in pack.ini. + """ + pass + + +def create_profile(): + """ + Automatically create a launcher profile for the modpack. + """ + pass + + + +def main(): + pass + + +if __name__ == '__main__': + main() |