mirror of
https://github.com/Murasame-Dev/McStatus-API.git
synced 2025-12-16 13:17:43 +00:00
7 lines
No EOL
363 B
Python
7 lines
No EOL
363 B
Python
import os
|
|
|
|
BACKGROUND_URL = os.environ.get("BACKGROUND_URL", "https://www.loliapi.com/acg/")
|
|
DEFAULT_ICON = os.environ.get("DEFAULT_ICON", "mcstatus_img/minecraft-creeper-face.png")
|
|
FONT_PATH = os.environ.get("FONT_PATH", "mcstatus_img/MiSans-Bold.ttf")
|
|
IMAGE_WIDTH = int(os.environ.get("IMAGE_WIDTH", "0"))
|
|
IMAGE_HEIGHT = int(os.environ.get("IMAGE_HEIGHT", "0")) |