diff --git a/packages/core/README.md b/packages/core/README.md index adb2d27..5943378 100644 --- a/packages/core/README.md +++ b/packages/core/README.md @@ -121,7 +121,7 @@ const entryPoint = injectable( authService, movieService, logger, - (authService, movieService): EntryPoint => + (authService, movieService, logger): EntryPoint => async (login, password): Promise => { const token = await authService.authorize(login, password) const movies = await movieService.fetchMovies(token)