Uni Ecto Plugin [patched] Official
config :my_app, MyApp.Repo, uni_opts: [endpoint: "https://uni.example", api_key: System.get_env("UNI_KEY")]
public Uni<UserDTO> fetchUser(String id) // This returns a Uni immediately, keeping the thread free return client.getUser(id) .onFailure().recoverWithItem(fallbackUser); uni ecto plugin

