diff --git a/README.md b/README.md index da07cf7..0369926 100644 --- a/README.md +++ b/README.md @@ -46,6 +46,9 @@ func init() { unleash.WithUrl("http://unleash.herokuapp.com/api/"), unleash.WithCustomHeaders(http.Header{"Authorization": {""}}), ) + + // The line below will block until the default client is ready or returns immediately. You can wait for readiness in a different way but this is good for new joiners + unleash.WaitForReady() } ```