Skip to content

Commit 6cec78c

Browse files
authored
Move info and ping commands to miscellaneous dir (#305)
* Move info and ping commands to miscellaneous dir * Update info.ts
1 parent 570950c commit 6cec78c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/commands/info/info.ts renamed to src/commands/miscellaneous/info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const infoCommandDetails: CodeyCommandDetails = {
5454
subcommandDetails: {}
5555
};
5656

57-
export class InfoCommand extends CodeyCommand {
57+
export class MiscellaneousInfoCommand extends CodeyCommand {
5858
details = infoCommandDetails;
5959

6060
public constructor(context: Command.Context, options: Command.Options) {

src/commands/ping/ping.ts renamed to src/commands/miscellaneous/ping.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ const pingCommandDetails: CodeyCommandDetails = {
5757
subcommandDetails: {}
5858
};
5959

60-
export class PingCommand extends CodeyCommand {
60+
export class MiscellaneousPingCommand extends CodeyCommand {
6161
details = pingCommandDetails;
6262

6363
public constructor(context: Command.Context, options: Command.Options) {

0 commit comments

Comments
 (0)