Skip to content

Commit

Permalink
Update BASE_API_URL and MEMBERS_API_URL in summon.py
Browse files Browse the repository at this point in the history
  • Loading branch information
a3510377 committed Apr 23, 2024
1 parent 3bd4cc5 commit cca6ddc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions scripts/summon.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
import os
import yaml
import aiohttp
import asyncio

BASE_API_URL = os.getenv("BASE_API_URL", "https://example.com/api")
MEMBERS_API_URL = f"{BASE_API_URL}/members"


async def fetch(s: aiohttp.ClientSession, url: str) -> dict:
try:
Expand Down

0 comments on commit cca6ddc

Please sign in to comment.