feat: add remove, list, and add config commands

This commit is contained in:
Stevan Freeborn
2025-03-10 21:45:46 -05:00
parent 5c2059cfa9
commit e9b9f7fc13
10 changed files with 340 additions and 28 deletions
@@ -9,12 +9,11 @@ static class HostBuilderExtensions
app.Configure(static c =>
{
c.PropagateExceptions();
c.AddBranch("config", static c =>
{
c.AddCommand<AddConfigCommand>("add");
c.AddCommand<RemoveConfigCommand>("remove");
c.AddCommand<ListConfigCommand>("list");
});
});