Skip to content
This repository was archived by the owner on Jun 19, 2026. It is now read-only.

Commit 57207fd

Browse files
committed
Refactor namespace dependencies in handlers
Updated `ConfigCommandOptionsHandler` to use `PluginConfig` namespace instead of `Workflows`. Similarly, updated `PluginsCommandOptionsHandler` to use `Plugins` namespace instead of `Workflows`. These changes improve modularity and align dependencies with their respective functionalities. #130
1 parent 7040fe1 commit 57207fd

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/FlowCtl/Commands/Config/ConfigCommandOptionsHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using FlowCtl.Core.Services.Logger;
33
using FlowCtl.Extensions;
44
using FlowSynx.Client;
5-
using FlowSynx.Client.Messages.Requests.Workflows;
5+
using FlowSynx.Client.Messages.Requests.PluginConfig;
66

77
namespace FlowCtl.Commands.Config;
88

src/FlowCtl/Commands/Plugins/PluginsCommandOptionsHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using FlowCtl.Core.Services.Logger;
33
using FlowCtl.Extensions;
44
using FlowSynx.Client;
5-
using FlowSynx.Client.Messages.Requests.Workflows;
5+
using FlowSynx.Client.Messages.Requests.Plugins;
66

77
namespace FlowCtl.Commands.Plugins;
88

0 commit comments

Comments
 (0)