Skip to content

Commit

Permalink
don't forget top level methods
Browse files Browse the repository at this point in the history
  • Loading branch information
efiop committed Oct 7, 2024
1 parent db184ed commit 0bbcc14
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions projects/fal_client/src/fal_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,21 @@

sync_client = SyncClient()
run = sync_client.run
subscribe = sync_client.subscribe
submit = sync_client.submit
status = sync_client.status
result = sync_client.result
stream = sync_client.stream
upload = sync_client.upload
upload_file = sync_client.upload_file
upload_image = sync_client.upload_image

async_client = AsyncClient()
run_async = async_client.run
subscribe_async = async_client.subscribe
submit_async = async_client.submit
status_async = async_client.status
result_async = async_client.result
stream_async = async_client.stream
upload_async = async_client.upload
upload_file_async = async_client.upload_file
Expand Down

0 comments on commit 0bbcc14

Please sign in to comment.