chore(git-provider): Move commands to command folder
This commit is contained in:
parent
2b3c7d0153
commit
a0e29619a4
2 changed files with 3 additions and 3 deletions
|
|
@ -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";
|
||||||
|
|
||||||
|
|
@ -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
|
||||||
Loading…
Reference in a new issue