From 92c6a8bb9ac60cee7f42e989cf34a860dffff176 Mon Sep 17 00:00:00 2001 From: Jordan Marr Date: Wed, 13 Mar 2024 19:31:35 -0400 Subject: [PATCH] Db Migrations Example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 560a646..afdb440 100644 --- a/README.md +++ b/README.md @@ -311,12 +311,12 @@ let main argv = |> Async.RunSynchronously ``` -### Passing Dependencies to Commands +### Database Migrations Example This real-life example for running database migrations demonstrates the following features: * Uses Microsoft.Extensions.Hosting. -* Passes the `ILogger` to the commands. * Uses async/task commands. +* Passes the `ILogger` dependency to the commands. * Shows help if no command is passed. ```F#