Skip to content

Commit

Permalink
🔥 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
shamhi committed Aug 2, 2024
1 parent 99b05bb commit 8f1089c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions bot/api/clicker.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,19 @@ async def get_account_info(
return response_json


async def get_skins(
http_client: aiohttp.ClientSession
) -> dict:
response_json = await make_request(
http_client,
'POST',
'https://api.hamsterkombatgame.io/clicker/get-skin',
{},
'getting Skins',
)
return response_json


async def send_taps(
http_client: aiohttp.ClientSession, available_energy: int, taps: int
) -> dict[Any, Any] | Any:
Expand Down
2 changes: 1 addition & 1 deletion bot/api/nuxt.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ async def get_nuxt_builds(
response_json = await make_request(
http_client,
'GET',
'https://hamsterkombatgame.io/_nuxt/builds/meta/8ec5c889-d6a0-4342-8ac7-94a4abfcf5b1.json',
'https://hamsterkombatgame.io/_nuxt/builds/meta/9091d68b-4157-4eaf-a9f5-e3f3def26c8e.json',
None,
'getting Nuxt Builds'
)
Expand Down

0 comments on commit 8f1089c

Please sign in to comment.