22 lines
716 B
Python
22 lines
716 B
Python
|
from garbage_api_client import Client
|
||
|
from garbage_api_client.api.default.entry_find_locations_location_entries_get import (
|
||
|
asyncio as entry_find,
|
||
|
)
|
||
|
from garbage_api_client.api.default.location_find_locations_get import (
|
||
|
asyncio as location_find,
|
||
|
)
|
||
|
from garbage_api_client.api.default.location_get_locations_id_get import (
|
||
|
asyncio as location_get,
|
||
|
)
|
||
|
|
||
|
|
||
|
class APIClient(Client):
|
||
|
async def entry_find(self, *args, **kwargs):
|
||
|
await entry_find(client=self, *args, **kwargs)
|
||
|
|
||
|
async def location_find(self, *args, **kwargs):
|
||
|
await location_find(client=self, *args, **kwargs)
|
||
|
|
||
|
async def location_get(self, *args, **kwargs):
|
||
|
await location_get(client=self, *args, **kwargs)
|