blob: 2df64a41cb0cafe3617b3a9ce4edbc80fbfb5b8a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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()
|