mirror of
https://github.com/PaiGramTeam/PaiGram.git
synced 2024-11-23 16:18:00 +00:00
10 lines
342 B
Python
10 lines
342 B
Python
from httpx import URL
|
|
|
|
__all__ = ("HONEY_HOST", "ENKA_HOST", "AMBR_HOST", "AMBR_API_HOST", "CELESTIA_HOST")
|
|
|
|
HONEY_HOST = URL("https://gensh.honeyhunterworld.com/")
|
|
ENKA_HOST = URL("https://enka.network/")
|
|
AMBR_HOST = URL("https://gi.yatta.moe/")
|
|
AMBR_API_HOST = AMBR_HOST.join("api/")
|
|
CELESTIA_HOST = URL("https://www.projectcelestia.com/")
|