blob: 2df64a41cb0cafe3617b3a9ce4edbc80fbfb5b8a (
plain) (
tree)
|
|
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()
|