Skip to content

Commit

Permalink
Task: create base command class (#5501)
Browse files Browse the repository at this point in the history
  • Loading branch information
thewahome authored Oct 1, 2024
1 parent c61b176 commit 9f628e7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions vscode/microsoft-kiota/src/commands/Command.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export abstract class Command {
public abstract getName(): string;

abstract execute(args: unknown): Promise<void> | void;
}

0 comments on commit 9f628e7

Please sign in to comment.