Supplemented commands documentation

This commit is contained in:
2024-07-15 00:14:21 +02:00
parent be6b3691b4
commit 9d1442b46b
38 changed files with 646 additions and 26 deletions

View File

@@ -8,12 +8,12 @@ public partial class MycroForge
{
public partial class Db
{
public partial class Stop : Command, ISubCommandOf<Db>
public class Stop : Command, ISubCommandOf<Db>
{
private readonly ProjectContext _context;
public Stop(ProjectContext context) :
base("stop", $"Stops {Features.Db.FeatureName}.docker-compose.yml")
base("stop", $"Stops the services defined in {Features.Db.FeatureName}.docker-compose.yml")
{
_context = context;
this.SetHandler(ExecuteAsync);