chore(git-provider): Move commands to command folder

This commit is contained in:
Scott 2026-08-23 09:04:38 +10:00
commit a0e29619a4
2 changed files with 3 additions and 3 deletions

View file

@ -4,10 +4,10 @@ using System.IO;
using System.Management.Automation; using System.Management.Automation;
using ModuleCore.Git; using ModuleCore.Git;
namespace PowershellModule.Git; namespace PowershellModule.Git.Commands;
[Cmdlet(VerbsCommon.New, Noun)] [Cmdlet(VerbsCommon.New, Noun)]
public class NewGitRepoCommand : PSCmdlet public sealed class NewGitRepoCommand : PSCmdlet
{ {
private const string Noun = "GitRepo"; private const string Noun = "GitRepo";

View file

@ -2,7 +2,7 @@
using System.Management.Automation; using System.Management.Automation;
using ModuleCore.Git; using ModuleCore.Git;
namespace PowershellModule.Git; namespace PowershellModule.Git.Commands;
[Cmdlet(VerbsCommon.Set, Noun)] [Cmdlet(VerbsCommon.Set, Noun)]
public class SetGitRepoCommand : PSCmdlet public class SetGitRepoCommand : PSCmdlet