Is it possible to implement custom filesystem host with only async methods?
Scenario: The files are on a remote server that communicates via RPC. These RPC calls are always async - thus all sync methods are inherently async.
It would be nice if it was possible to only implement the async methods since these are the only valid functions in this usecase.
Thank you for you assistance.