mirror of
https://github.com/unmojang/meta.git
synced 2025-09-27 21:23:43 -04:00
13 lines
332 B
Python
13 lines
332 B
Python
from os.path import join
|
|
|
|
BASE_DIR = "fabric"
|
|
|
|
JARS_DIR = join(BASE_DIR, "jars")
|
|
INSTALLER_INFO_DIR = join(BASE_DIR, "loader-installer-json")
|
|
META_DIR = join(BASE_DIR, "meta-v2")
|
|
|
|
LOADER_COMPONENT = "net.fabricmc.fabric-loader"
|
|
INTERMEDIARY_COMPONENT = "net.fabricmc.intermediary"
|
|
|
|
DATETIME_FORMAT_HTTP = "%a, %d %b %Y %H:%M:%S %Z"
|